mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 13:14:32 +00:00
expand round completed message
This commit is contained in:
parent
dd2926095b
commit
893d1f783c
1 changed files with 13 additions and 11 deletions
|
@ -184,7 +184,8 @@ class _FusionDialogViewState extends ConsumerState<FusionDialogView> {
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
if (_fusionRoundsCompleted > 0)
|
if (_fusionRoundsCompleted > 0)
|
||||||
RoundedContainer(
|
Expanded(
|
||||||
|
child: RoundedContainer(
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
.extension<StackColors>()!
|
||||||
.snackBarBackInfo,
|
.snackBarBackInfo,
|
||||||
|
@ -198,6 +199,7 @@ class _FusionDialogViewState extends ConsumerState<FusionDialogView> {
|
||||||
textAlign: TextAlign.center,
|
textAlign: TextAlign.center,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
if (_fusionRoundsCompleted > 0)
|
if (_fusionRoundsCompleted > 0)
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 20,
|
height: 20,
|
||||||
|
|
Loading…
Reference in a new issue