mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
desktop show more button fix
This commit is contained in:
parent
c530aef112
commit
6e5cffa4d4
1 changed files with 14 additions and 12 deletions
|
@ -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(),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue