mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
don't expand all the things
This commit is contained in:
parent
d041d9a9ec
commit
ae68a85937
1 changed files with 8 additions and 12 deletions
|
@ -178,20 +178,16 @@ class _FusionProgressViewState extends ConsumerState<FusionProgressView> {
|
|||
walletId: widget.walletId,
|
||||
),
|
||||
if (_succeeded)
|
||||
Expanded(
|
||||
child: PrimaryButton(
|
||||
buttonHeight: ButtonHeight.m,
|
||||
label: "Fuse again",
|
||||
onPressed: () => _fuseAgain,
|
||||
),
|
||||
PrimaryButton(
|
||||
buttonHeight: ButtonHeight.m,
|
||||
label: "Fuse again",
|
||||
onPressed: () => _fuseAgain,
|
||||
),
|
||||
if (_failed)
|
||||
Expanded(
|
||||
child: PrimaryButton(
|
||||
buttonHeight: ButtonHeight.m,
|
||||
label: "Try again",
|
||||
onPressed: () => _fuseAgain,
|
||||
),
|
||||
PrimaryButton(
|
||||
buttonHeight: ButtonHeight.m,
|
||||
label: "Try again",
|
||||
onPressed: () => _fuseAgain,
|
||||
),
|
||||
if (!_succeeded && !_failed) const Spacer(),
|
||||
const SizedBox(
|
||||
|
|
Loading…
Reference in a new issue