Skip to content
Snippets Groups Projects
Commit 2d62607d authored by JonOfUs's avatar JonOfUs
Browse files

Add cross to quit button

parent a0aa0315
No related branches found
No related tags found
1 merge request!6Cross as close icon next to text
Pipeline #276778 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 to comment