desktop show more button fix

This commit is contained in:
julian 2023-04-03 16:37:20 -06:00
parent c530aef112
commit 6e5cffa4d4

View file

@ -355,6 +355,7 @@ class _DesktopWalletFeaturesState extends ConsumerState<DesktopWalletFeatures> {
const SizedBox(
width: 16,
),
if (showMore)
SecondaryButton(
label: "More",
width: buttonWidth,
@ -363,8 +364,9 @@ class _DesktopWalletFeaturesState extends ConsumerState<DesktopWalletFeatures> {
Assets.svg.bars,
height: 20,
width: 20,
color:
Theme.of(context).extension<StackColors>()!.buttonTextSecondary,
color: Theme.of(context)
.extension<StackColors>()!
.buttonTextSecondary,
),
onPressed: () => _onMorePressed(),
),