mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 20:09:23 +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,21 +178,17 @@ class _FusionProgressViewState extends ConsumerState<FusionProgressView> {
|
||||||
walletId: widget.walletId,
|
walletId: widget.walletId,
|
||||||
),
|
),
|
||||||
if (_succeeded)
|
if (_succeeded)
|
||||||
Expanded(
|
PrimaryButton(
|
||||||
child: PrimaryButton(
|
|
||||||
buttonHeight: ButtonHeight.m,
|
buttonHeight: ButtonHeight.m,
|
||||||
label: "Fuse again",
|
label: "Fuse again",
|
||||||
onPressed: () => _fuseAgain,
|
onPressed: () => _fuseAgain,
|
||||||
),
|
),
|
||||||
),
|
|
||||||
if (_failed)
|
if (_failed)
|
||||||
Expanded(
|
PrimaryButton(
|
||||||
child: PrimaryButton(
|
|
||||||
buttonHeight: ButtonHeight.m,
|
buttonHeight: ButtonHeight.m,
|
||||||
label: "Try again",
|
label: "Try again",
|
||||||
onPressed: () => _fuseAgain,
|
onPressed: () => _fuseAgain,
|
||||||
),
|
),
|
||||||
),
|
|
||||||
if (!_succeeded && !_failed) const Spacer(),
|
if (!_succeeded && !_failed) const Spacer(),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 16,
|
height: 16,
|
||||||
|
|
Loading…
Reference in a new issue