Merge pull request #2636 from krille-chan/krille/adjust-ui
Krille/adjust UI
This commit is contained in:
commit
9990fa83d2
3 changed files with 7 additions and 3 deletions
|
|
@ -129,7 +129,7 @@ class ChatInputRow extends StatelessWidget {
|
||||||
: const SizedBox.shrink(),
|
: const SizedBox.shrink(),
|
||||||
]
|
]
|
||||||
: <Widget>[
|
: <Widget>[
|
||||||
const SizedBox(width: 4),
|
const SizedBox(width: 8),
|
||||||
AnimatedContainer(
|
AnimatedContainer(
|
||||||
duration: FluffyThemes.animationDuration,
|
duration: FluffyThemes.animationDuration,
|
||||||
curve: FluffyThemes.animationCurve,
|
curve: FluffyThemes.animationCurve,
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ class RecordingInputRow extends StatelessWidget {
|
||||||
crossAxisAlignment: .center,
|
crossAxisAlignment: .center,
|
||||||
mainAxisAlignment: .spaceBetween,
|
mainAxisAlignment: .spaceBetween,
|
||||||
children: [
|
children: [
|
||||||
const SizedBox(width: 4),
|
const SizedBox(width: 8),
|
||||||
Container(
|
Container(
|
||||||
alignment: .center,
|
alignment: .center,
|
||||||
width: 48,
|
width: 48,
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,11 @@ class SeenByRow extends StatelessWidget {
|
||||||
builder: (context, asyncSnapshot) {
|
builder: (context, asyncSnapshot) {
|
||||||
final seenByUsers = event.receipts
|
final seenByUsers = event.receipts
|
||||||
.map((r) => r.user)
|
.map((r) => r.user)
|
||||||
.where((user) => user.id != event.room.client.userID)
|
.where(
|
||||||
|
(user) =>
|
||||||
|
user.id != event.room.client.userID &&
|
||||||
|
user.id != event.senderId,
|
||||||
|
)
|
||||||
.toList();
|
.toList();
|
||||||
return Container(
|
return Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue