expand round completed message

This commit is contained in:
sneurlax 2023-10-19 16:05:45 -05:00
parent dd2926095b
commit 893d1f783c

View file

@ -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,