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
|
@override
|
||||||
Color get numpadTextDefault => const Color(0xFFFFFFFF);
|
Color get numpadTextDefault => const Color(0xFFFFFFFF);
|
||||||
@override
|
@override
|
||||||
Color get bottomNavText => const Color(0xFF232323);
|
Color get bottomNavText => const Color(0xFFFFFFFF);
|
||||||
@override
|
@override
|
||||||
Color get customTextButtonEnabledText => buttonTextBorderless;
|
Color get customTextButtonEnabledText => buttonTextBorderless;
|
||||||
@override
|
@override
|
||||||
|
|
|
@ -67,7 +67,10 @@ class WalletNavigationBarItem extends ConsumerWidget {
|
||||||
data.overrideText ??
|
data.overrideText ??
|
||||||
Text(
|
Text(
|
||||||
data.label ?? "",
|
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(
|
overrideText: AnimatedCrossFade(
|
||||||
firstChild: Text(
|
firstChild: Text(
|
||||||
"More",
|
"More",
|
||||||
style: STextStyles.buttonSmall(
|
style:
|
||||||
context),
|
STextStyles.buttonSmall(context)
|
||||||
|
.copyWith(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.extension<
|
||||||
|
StackColors>()!
|
||||||
|
.bottomNavText),
|
||||||
),
|
),
|
||||||
secondChild: Text(
|
secondChild: Text(
|
||||||
"More",
|
"More",
|
||||||
|
|
Loading…
Reference in a new issue