mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 10:34:32 +00:00
desktop show more button fix
This commit is contained in:
parent
76b349d2b1
commit
53a4d8a4cd
1 changed files with 14 additions and 12 deletions
|
@ -355,6 +355,7 @@ class _DesktopWalletFeaturesState extends ConsumerState<DesktopWalletFeatures> {
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 16,
|
width: 16,
|
||||||
),
|
),
|
||||||
|
if (showMore)
|
||||||
SecondaryButton(
|
SecondaryButton(
|
||||||
label: "More",
|
label: "More",
|
||||||
width: buttonWidth,
|
width: buttonWidth,
|
||||||
|
@ -363,8 +364,9 @@ class _DesktopWalletFeaturesState extends ConsumerState<DesktopWalletFeatures> {
|
||||||
Assets.svg.bars,
|
Assets.svg.bars,
|
||||||
height: 20,
|
height: 20,
|
||||||
width: 20,
|
width: 20,
|
||||||
color:
|
color: Theme.of(context)
|
||||||
Theme.of(context).extension<StackColors>()!.buttonTextSecondary,
|
.extension<StackColors>()!
|
||||||
|
.buttonTextSecondary,
|
||||||
),
|
),
|
||||||
onPressed: () => _onMorePressed(),
|
onPressed: () => _onMorePressed(),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue