mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-12 09:27:01 +00:00
fix mobile button height
This commit is contained in:
parent
762757f694
commit
bfbcaea4c5
1 changed files with 2 additions and 2 deletions
|
@ -51,14 +51,14 @@ class _FusionProgressViewState extends ConsumerState<FusionProgressView> {
|
|||
title: "Cancel fusion?",
|
||||
leftButton: SecondaryButton(
|
||||
label: "No",
|
||||
buttonHeight: ButtonHeight.l,
|
||||
buttonHeight: null,
|
||||
onPressed: () {
|
||||
Navigator.of(context).pop(false);
|
||||
},
|
||||
),
|
||||
rightButton: PrimaryButton(
|
||||
label: "Yes",
|
||||
buttonHeight: ButtonHeight.l,
|
||||
buttonHeight: null,
|
||||
onPressed: () {
|
||||
Navigator.of(context).pop(true);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue