Compare commits

...
Author SHA1 Message Date
06c5411dfc
fix bug flutter bump introduced in mention overlay 2026-07-21 16:28:05 -04:00
f6b5bd4057
bump gomuks 2026-07-21 16:27:53 -04:00
2 changed files with 45 additions and 39 deletions

2
gomuks

@ -1 +1 @@
Subproject commit 3c759ba03a5235deb82cb1559ebc42c36ee0e874
Subproject commit bc0f54a0ad1404afbec9ceb65136ec9eeb9b62c4

View file

@ -73,7 +73,9 @@ class MentionOverlay extends ConsumerWidget {
:final displayName,
:final avatarUrl,
) =>
ListTile(
Material(
color: Colors.transparent,
child: ListTile(
leading: AvatarOrHash(
avatarUrl,
displayName ??
@ -89,6 +91,7 @@ class MentionOverlay extends ConsumerWidget {
name: member.stateKey!.localpart,
),
),
),
_ => SizedBox.shrink(),
},
)
@ -113,7 +116,9 @@ class MentionOverlay extends ConsumerWidget {
room.metadata?.canonicalAlias ??
room.metadata?.id ??
"Unknown Room";
return ListTile(
return Material(
color: Colors.transparent,
child: ListTile(
leading: AvatarOrHash(
room.metadata?.avatar,
name,
@ -138,6 +143,7 @@ class MentionOverlay extends ConsumerWidget {
"",
);
},
),
);
})
.toList(),