mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 13:14:32 +00:00
Merge pull request #457 from cypherstack/ui-fixes
desktop show more button fix
This commit is contained in:
commit
613e2ad9eb
1 changed files with 14 additions and 12 deletions
|
@ -355,19 +355,21 @@ class _DesktopWalletFeaturesState extends ConsumerState<DesktopWalletFeatures> {
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 16,
|
width: 16,
|
||||||
),
|
),
|
||||||
SecondaryButton(
|
if (showMore)
|
||||||
label: "More",
|
SecondaryButton(
|
||||||
width: buttonWidth,
|
label: "More",
|
||||||
buttonHeight: ButtonHeight.l,
|
width: buttonWidth,
|
||||||
icon: SvgPicture.asset(
|
buttonHeight: ButtonHeight.l,
|
||||||
Assets.svg.bars,
|
icon: SvgPicture.asset(
|
||||||
height: 20,
|
Assets.svg.bars,
|
||||||
width: 20,
|
height: 20,
|
||||||
color:
|
width: 20,
|
||||||
Theme.of(context).extension<StackColors>()!.buttonTextSecondary,
|
color: Theme.of(context)
|
||||||
|
.extension<StackColors>()!
|
||||||
|
.buttonTextSecondary,
|
||||||
|
),
|
||||||
|
onPressed: () => _onMorePressed(),
|
||||||
),
|
),
|
||||||
onPressed: () => _onMorePressed(),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue