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

Merge branch 'close-icon' into 'main'

Cross as close icon next to text

See merge request !6
parents 5f905a19 6de16e7b
No related branches found
No related tags found
1 merge request!6Cross as close icon next to text
Pipeline #277040 passed
......@@ -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(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment