mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +00:00
commit
2b250960d6
5 changed files with 14 additions and 6 deletions
|
@ -107,7 +107,7 @@ class ForestColors extends StackColorTheme {
|
|||
@override
|
||||
Color get numpadTextDefault => const Color(0xFFFFFFFF);
|
||||
@override
|
||||
Color get bottomNavText => const Color(0xFF232323);
|
||||
Color get bottomNavText => const Color(0xFF22867A);
|
||||
@override
|
||||
Color get customTextButtonEnabledText => infoItemIcons;
|
||||
@override
|
||||
|
|
|
@ -114,7 +114,7 @@ class OceanBreezeColors extends StackColorTheme {
|
|||
@override
|
||||
Color get numpadTextDefault => const Color(0xFFFFFFFF);
|
||||
@override
|
||||
Color get bottomNavText => const Color(0xFF232323);
|
||||
Color get bottomNavText => const Color(0xFF227386);
|
||||
@override
|
||||
Color get customTextButtonEnabledText => buttonTextBorderless;
|
||||
@override
|
||||
|
|
|
@ -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