diff --git a/lib/screens/channel_chat_screen.dart b/lib/screens/channel_chat_screen.dart index 94101ef3..bea4ac47 100644 --- a/lib/screens/channel_chat_screen.dart +++ b/lib/screens/channel_chat_screen.dart @@ -658,6 +658,7 @@ class _ChannelChatScreenState extends State { : EdgeInsets.zero, child: Row( mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.start, children: [ RouteChip( isDirect: (message.pathLength ?? -1) >= 0, @@ -666,13 +667,15 @@ class _ChannelChatScreenState extends State { : null, ), const SizedBox(width: 4), - Text( - context.l10n.channels_via( - _formatPathPrefixes(displayPath), - ), - style: MeshTheme.mono( - fontSize: 9.5 * textScale, - color: metaColor, + Flexible( + child: Text( + context.l10n.channels_via( + _formatPathPrefixes(displayPath), + ), + style: MeshTheme.mono( + fontSize: 9.5 * textScale, + color: metaColor, + ), ), ), ], diff --git a/linux/flutter/generated_plugins.cmake b/linux/flutter/generated_plugins.cmake index 379e36fa..93e46829 100644 --- a/linux/flutter/generated_plugins.cmake +++ b/linux/flutter/generated_plugins.cmake @@ -8,6 +8,7 @@ list(APPEND FLUTTER_PLUGIN_LIST list(APPEND FLUTTER_FFI_PLUGIN_LIST flserial + jni ) set(PLUGIN_BUNDLED_LIBRARIES) diff --git a/windows/flutter/generated_plugins.cmake b/windows/flutter/generated_plugins.cmake index f02857f4..533a1712 100644 --- a/windows/flutter/generated_plugins.cmake +++ b/windows/flutter/generated_plugins.cmake @@ -11,6 +11,7 @@ list(APPEND FLUTTER_PLUGIN_LIST list(APPEND FLUTTER_FFI_PLUGIN_LIST flserial flutter_local_notifications_windows + jni ) set(PLUGIN_BUNDLED_LIBRARIES)