Skip to content
Snippets Groups Projects
Commit 6de16e7b authored by Jonathan Flueren's avatar Jonathan Flueren
Browse files

Cross as close icon next to text

parent 5f905a19
No related branches found
No related tags found
1 merge request!6Cross as close icon next to text
...@@ -55,8 +55,21 @@ class _OBSRecordPageState extends State<OBSRecordPage> { ...@@ -55,8 +55,21 @@ class _OBSRecordPageState extends State<OBSRecordPage> {
}); });
} }
}, },
child: child: Row(
Text(AppLocalizations.of(context)!.recordPageStopButton), 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 // Allways show the location status widget
LocationStatus(), LocationStatus(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment