Merge pull request #463 from cypherstack/ui-fixes

UI fixes
This commit is contained in:
Rylee Davis 2023-04-05 17:04:33 -06:00 committed by GitHub
commit 2b250960d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

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

View file

@ -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",