diff --git a/lib/pages_desktop_specific/cashfusion/sub_widgets/fusion_dialog.dart b/lib/pages_desktop_specific/cashfusion/sub_widgets/fusion_dialog.dart index 3aefdfd69..46cac5aa4 100644 --- a/lib/pages_desktop_specific/cashfusion/sub_widgets/fusion_dialog.dart +++ b/lib/pages_desktop_specific/cashfusion/sub_widgets/fusion_dialog.dart @@ -184,18 +184,20 @@ class _FusionDialogViewState extends ConsumerState { child: Column( children: [ if (_fusionRoundsCompleted > 0) - RoundedContainer( - color: Theme.of(context) - .extension()! - .snackBarBackInfo, - child: Text( - "Fusion rounds completed: $_fusionRoundsCompleted", - style: STextStyles.w500_14(context).copyWith( - color: Theme.of(context) - .extension()! - .snackBarTextInfo, + Expanded( + child: RoundedContainer( + color: Theme.of(context) + .extension()! + .snackBarBackInfo, + child: Text( + "Fusion rounds completed: $_fusionRoundsCompleted", + style: STextStyles.w500_14(context).copyWith( + color: Theme.of(context) + .extension()! + .snackBarTextInfo, + ), + textAlign: TextAlign.center, ), - textAlign: TextAlign.center, ), ), if (_fusionRoundsCompleted > 0)