mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
set text color for wallet nav
This commit is contained in:
parent
848336bb07
commit
05eb6bd20d
3 changed files with 12 additions and 4 deletions
|
@ -107,7 +107,7 @@ class OrangeColors extends StackColorTheme {
|
|||
@override
|
||||
Color get numpadTextDefault => const Color(0xFFFFFFFF);
|
||||
@override
|
||||
Color get bottomNavText => const Color(0xFF232323);
|
||||
Color get bottomNavText => const Color(0xFFFFFFFF);
|
||||
@override
|
||||
Color get customTextButtonEnabledText => buttonTextBorderless;
|
||||
@override
|
||||
|
|
|
@ -67,7 +67,10 @@ class WalletNavigationBarItem extends ConsumerWidget {
|
|||
data.overrideText ??
|
||||
Text(
|
||||
data.label ?? "",
|
||||
style: STextStyles.buttonSmall(context),
|
||||
style: STextStyles.buttonSmall(context).copyWith(
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.bottomNavText),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
|
@ -187,8 +187,13 @@ class _WalletNavigationBarState extends ConsumerState<WalletNavigationBar> {
|
|||
overrideText: AnimatedCrossFade(
|
||||
firstChild: Text(
|
||||
"More",
|
||||
style: STextStyles.buttonSmall(
|
||||
context),
|
||||
style:
|
||||
STextStyles.buttonSmall(context)
|
||||
.copyWith(
|
||||
color: Theme.of(context)
|
||||
.extension<
|
||||
StackColors>()!
|
||||
.bottomNavText),
|
||||
),
|
||||
secondChild: Text(
|
||||
"More",
|
||||
|
|
Loading…
Reference in a new issue