fix: text color of more options

This commit is contained in:
julian 2023-05-15 09:32:40 -06:00
parent 100b3085eb
commit 7aeab97151

View file

@ -68,9 +68,10 @@ class WalletNavigationBarItem extends ConsumerWidget {
Text( Text(
data.label ?? "", data.label ?? "",
style: STextStyles.buttonSmall(context).copyWith( style: STextStyles.buttonSmall(context).copyWith(
color: Theme.of(context) color: Theme.of(context)
.extension<StackColors>()! .extension<StackColors>()!
.bottomNavText), .bottomNavText,
),
), ),
], ],
), ),
@ -112,7 +113,11 @@ class WalletNavigationBarMoreItem extends ConsumerWidget {
child: Text( child: Text(
data.label ?? "", data.label ?? "",
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: STextStyles.buttonSmall(context), style: STextStyles.buttonSmall(context).copyWith(
color: Theme.of(context)
.extension<StackColors>()!
.bottomNavText,
),
), ),
), ),
const SizedBox( const SizedBox(