Merge pull request #2636 from krille-chan/krille/adjust-ui

Krille/adjust UI
This commit is contained in:
Krille-chan 2026-03-03 17:35:12 +01:00 committed by GitHub
commit 9990fa83d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 3 deletions

View file

@ -129,7 +129,7 @@ class ChatInputRow extends StatelessWidget {
: const SizedBox.shrink(),
]
: <Widget>[
const SizedBox(width: 4),
const SizedBox(width: 8),
AnimatedContainer(
duration: FluffyThemes.animationDuration,
curve: FluffyThemes.animationCurve,

View file

@ -26,7 +26,7 @@ class RecordingInputRow extends StatelessWidget {
crossAxisAlignment: .center,
mainAxisAlignment: .spaceBetween,
children: [
const SizedBox(width: 4),
const SizedBox(width: 8),
Container(
alignment: .center,
width: 48,

View file

@ -26,7 +26,11 @@ class SeenByRow extends StatelessWidget {
builder: (context, asyncSnapshot) {
final seenByUsers = event.receipts
.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();
return Container(
width: double.infinity,