diff --git a/lib/obs_record_page.dart b/lib/obs_record_page.dart index 044afdbc5684612604a0cf2db85c0d0acad95a4b..4a22994257eea27ac8c93dd0b9a23147eba7a1be 100644 --- a/lib/obs_record_page.dart +++ b/lib/obs_record_page.dart @@ -55,8 +55,21 @@ class _OBSRecordPageState extends State<OBSRecordPage> { }); } }, - child: - Text(AppLocalizations.of(context)!.recordPageStopButton), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Expanded( + child: Text( + AppLocalizations.of(context)!.recordPageStopButton, + textAlign: TextAlign.center, + ), + ), + Icon( + Icons.close, + size: 35, + ), + ], + ), ), // Allways show the location status widget LocationStatus(),