From b06c21325ebcf9db77616e0a8418a37bc41770c8 Mon Sep 17 00:00:00 2001 From: Christos Longros <98426896+chrislongros@users.noreply.github.com> Date: Thu, 12 Feb 2026 17:57:03 +0100 Subject: [PATCH] fix(mobile): prevent nav bar label text wrapping (#26011) * fix(mobile): prevent nav bar label text wrapping (#25921) * chore: fix format --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> --- mobile/lib/theme/theme_data.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mobile/lib/theme/theme_data.dart b/mobile/lib/theme/theme_data.dart index a633a04d7f..3837d6337c 100644 --- a/mobile/lib/theme/theme_data.dart +++ b/mobile/lib/theme/theme_data.dart @@ -73,7 +73,9 @@ ThemeData getThemeData({required ColorScheme colorScheme, required Locale locale ), navigationBarTheme: NavigationBarThemeData( backgroundColor: isDark ? colorScheme.surfaceContainer : colorScheme.surface, - labelTextStyle: const WidgetStatePropertyAll(TextStyle(fontSize: 14, fontWeight: FontWeight.w500)), + labelTextStyle: const WidgetStatePropertyAll( + TextStyle(fontSize: 14, fontWeight: FontWeight.w500, overflow: TextOverflow.ellipsis), + ), ), inputDecorationTheme: InputDecorationTheme( focusedBorder: OutlineInputBorder(