Add onSecondaryTap to MeshCard and fix right-click on message text bubbles

This commit is contained in:
Eric Poulsen
2026-06-13 19:22:16 -07:00
parent f1478722b0
commit f34c2a92c3
3 changed files with 15 additions and 18 deletions
+9 -11
View File
@@ -429,16 +429,15 @@ class _ChannelsScreenState extends State<ChannelsScreen>
channelMessageStore,
channel,
),
child: GestureDetector(
onSecondaryTapUp: PlatformInfo.isDesktop
? (_) => _showChannelActions(
this.context,
connector,
channelMessageStore,
channel,
)
: null,
child: Row(
onSecondaryTap: PlatformInfo.isDesktop
? () => _showChannelActions(
this.context,
connector,
channelMessageStore,
channel,
)
: null,
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
// Leading avatar with optional community badge
@@ -566,7 +565,6 @@ class _ChannelsScreenState extends State<ChannelsScreen>
],
),
),
),
);
}