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,19 +355,21 @@ class _DesktopWalletFeaturesState extends ConsumerState<DesktopWalletFeatures> {
const SizedBox(
width: 16,
),
SecondaryButton(
label: "More",
width: buttonWidth,
buttonHeight: ButtonHeight.l,
icon: SvgPicture.asset(
Assets.svg.bars,
height: 20,
width: 20,
color:
Theme.of(context).extension<StackColors>()!.buttonTextSecondary,
if (showMore)
SecondaryButton(
label: "More",
width: buttonWidth,
buttonHeight: ButtonHeight.l,
icon: SvgPicture.asset(
Assets.svg.bars,
height: 20,
width: 20,
color: Theme.of(context)
.extension<StackColors>()!
.buttonTextSecondary,
),
onPressed: () => _onMorePressed(),
),
onPressed: () => _onMorePressed(),
),
],
);
}