diff --git a/lib/modules/survey_detail/components/content.dart b/lib/modules/survey_detail/components/content.dart index 75462d3a..59215630 100644 --- a/lib/modules/survey_detail/components/content.dart +++ b/lib/modules/survey_detail/components/content.dart @@ -39,20 +39,6 @@ class Content extends StatelessWidget { fontSize: 17, ), ), - Expanded(child: Container()), - Row( - mainAxisAlignment: MainAxisAlignment.end, - children: [ - ConstrainedBox( - constraints: const BoxConstraints( - minWidth: 140, - ), - child: Button( - title: AppLocalizations.of(context)! - .surveyDetailScreenStartSurveyButtonTitle, - ), - ), - ]), ], ), ), @@ -60,6 +46,20 @@ class Content extends StatelessWidget { ], ), ), + Positioned( + right: 20, + bottom: 0, + child: SafeArea( + child: ConstrainedBox( + constraints: const BoxConstraints( + minWidth: 140, + ), + child: Button( + title: AppLocalizations.of(context)!.surveyDetailScreenStartSurveyButtonTitle, + ), + ), + ), + ) ], ), );