Add jni to FFI plugin list for Linux and Windows

This commit is contained in:
Zach
2026-06-15 13:12:08 -07:00
parent e38d03a32e
commit 43f3d439ba
3 changed files with 12 additions and 7 deletions
+10 -7
View File
@@ -658,6 +658,7 @@ class _ChannelChatScreenState extends State<ChannelChatScreen> {
: EdgeInsets.zero, : EdgeInsets.zero,
child: Row( child: Row(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
RouteChip( RouteChip(
isDirect: (message.pathLength ?? -1) >= 0, isDirect: (message.pathLength ?? -1) >= 0,
@@ -666,13 +667,15 @@ class _ChannelChatScreenState extends State<ChannelChatScreen> {
: null, : null,
), ),
const SizedBox(width: 4), const SizedBox(width: 4),
Text( Flexible(
context.l10n.channels_via( child: Text(
_formatPathPrefixes(displayPath), context.l10n.channels_via(
), _formatPathPrefixes(displayPath),
style: MeshTheme.mono( ),
fontSize: 9.5 * textScale, style: MeshTheme.mono(
color: metaColor, fontSize: 9.5 * textScale,
color: metaColor,
),
), ),
), ),
], ],
+1
View File
@@ -8,6 +8,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
list(APPEND FLUTTER_FFI_PLUGIN_LIST list(APPEND FLUTTER_FFI_PLUGIN_LIST
flserial flserial
jni
) )
set(PLUGIN_BUNDLED_LIBRARIES) set(PLUGIN_BUNDLED_LIBRARIES)
+1
View File
@@ -11,6 +11,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
list(APPEND FLUTTER_FFI_PLUGIN_LIST list(APPEND FLUTTER_FFI_PLUGIN_LIST
flserial flserial
flutter_local_notifications_windows flutter_local_notifications_windows
jni
) )
set(PLUGIN_BUNDLED_LIBRARIES) set(PLUGIN_BUNDLED_LIBRARIES)