1
0
forked from firka/firka

bottom_nav_icon.dart: respect theming

This commit is contained in:
2025-09-05 21:41:10 +02:00
parent 975c9c5a08
commit 2d5cc896b8

View File

@@ -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),
),
],
),