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,18 +184,20 @@ class _FusionDialogViewState extends ConsumerState<FusionDialogView> {
child: Column( child: Column(
children: [ children: [
if (_fusionRoundsCompleted > 0) if (_fusionRoundsCompleted > 0)
RoundedContainer( Expanded(
color: Theme.of(context) child: RoundedContainer(
.extension<StackColors>()! color: Theme.of(context)
.snackBarBackInfo, .extension<StackColors>()!
child: Text( .snackBarBackInfo,
"Fusion rounds completed: $_fusionRoundsCompleted", child: Text(
style: STextStyles.w500_14(context).copyWith( "Fusion rounds completed: $_fusionRoundsCompleted",
color: Theme.of(context) style: STextStyles.w500_14(context).copyWith(
.extension<StackColors>()! color: Theme.of(context)
.snackBarTextInfo, .extension<StackColors>()!
.snackBarTextInfo,
),
textAlign: TextAlign.center,
), ),
textAlign: TextAlign.center,
), ),
), ),
if (_fusionRoundsCompleted > 0) if (_fusionRoundsCompleted > 0)