mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
desktop cashfusion ui fixes
This commit is contained in:
parent
3678cc1a42
commit
35d1c35892
1 changed files with 8 additions and 19 deletions
|
@ -207,23 +207,6 @@ class _FusionDialogViewState extends ConsumerState<FusionDialogView> {
|
||||||
FusionProgress(
|
FusionProgress(
|
||||||
walletId: widget.walletId,
|
walletId: widget.walletId,
|
||||||
),
|
),
|
||||||
if (_succeeded)
|
|
||||||
Expanded(
|
|
||||||
child: PrimaryButton(
|
|
||||||
buttonHeight: ButtonHeight.m,
|
|
||||||
label: "Fuse again",
|
|
||||||
onPressed: () => _fuseAgain,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
if (_failed)
|
|
||||||
Expanded(
|
|
||||||
child: PrimaryButton(
|
|
||||||
buttonHeight: ButtonHeight.m,
|
|
||||||
label: "Try again",
|
|
||||||
onPressed: () => _fuseAgain,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
if (!_succeeded && !_failed) const Spacer(),
|
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 12,
|
height: 12,
|
||||||
),
|
),
|
||||||
|
@ -237,7 +220,10 @@ class _FusionDialogViewState extends ConsumerState<FusionDialogView> {
|
||||||
onPressed: () => _fuseAgain,
|
onPressed: () => _fuseAgain,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (_succeeded) const Spacer(),
|
if (_succeeded)
|
||||||
|
const SizedBox(
|
||||||
|
width: 16,
|
||||||
|
),
|
||||||
if (_failed)
|
if (_failed)
|
||||||
Expanded(
|
Expanded(
|
||||||
child: PrimaryButton(
|
child: PrimaryButton(
|
||||||
|
@ -246,7 +232,10 @@ class _FusionDialogViewState extends ConsumerState<FusionDialogView> {
|
||||||
onPressed: () => _fuseAgain,
|
onPressed: () => _fuseAgain,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (_failed) const Spacer(),
|
if (_failed)
|
||||||
|
const SizedBox(
|
||||||
|
width: 16,
|
||||||
|
),
|
||||||
if (!_succeeded && !_failed) const Spacer(),
|
if (!_succeeded && !_failed) const Spacer(),
|
||||||
if (!_succeeded && !_failed)
|
if (!_succeeded && !_failed)
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
|
|
Loading…
Reference in a new issue