From 2d5cc896b8494bb788b1b6e9d7d6d555dd531413 Mon Sep 17 00:00:00 2001 From: Armand <4831c0@proton.me> Date: Fri, 5 Sep 2025 21:41:10 +0200 Subject: [PATCH] bottom_nav_icon.dart: respect theming --- firka/lib/ui/phone/widgets/bottom_nav_icon.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/firka/lib/ui/phone/widgets/bottom_nav_icon.dart b/firka/lib/ui/phone/widgets/bottom_nav_icon.dart index 9f6cc8c..23dd052 100644 --- a/firka/lib/ui/phone/widgets/bottom_nav_icon.dart +++ b/firka/lib/ui/phone/widgets/bottom_nav_icon.dart @@ -36,7 +36,11 @@ class BottomNavIconWidget extends StatelessWidget { const SizedBox(height: 4), Text( text, - style: active ? appStyle.fonts.B_12SB : appStyle.fonts.B_12R, + style: active + ? appStyle.fonts.B_12SB + .apply(color: appStyle.colors.textPrimary) + : appStyle.fonts.B_12R + .apply(color: appStyle.colors.textSecondary), ), ], ),