From 9a45c5c45613cc8ccb6def4ef4df8769474bca9c Mon Sep 17 00:00:00 2001 From: balint1414 Date: Thu, 11 Jun 2026 15:31:11 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20N=C3=A9met=20=C3=B3rarend?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- firka/lib/ui/phone/widgets/bottom_nav_icon.dart | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/firka/lib/ui/phone/widgets/bottom_nav_icon.dart b/firka/lib/ui/phone/widgets/bottom_nav_icon.dart index b2565f3..858a0d4 100644 --- a/firka/lib/ui/phone/widgets/bottom_nav_icon.dart +++ b/firka/lib/ui/phone/widgets/bottom_nav_icon.dart @@ -54,12 +54,15 @@ class BottomNavIconWidget extends StatelessWidget { size: 24, ), const SizedBox(height: 2), - Text( - text, - style: appStyle.fonts.B_14R.apply( - color: active - ? appStyle.colors.textPrimary - : appStyle.colors.textSecondary, + FittedBox( + fit: BoxFit.scaleDown, + child: Text( + text, + style: appStyle.fonts.B_14R.apply( + color: active + ? appStyle.colors.textPrimary + : appStyle.colors.textSecondary, + ), ), ), ],