Added simple APK try auto-select by CPU arch #436

Plus minor form switch UI fixes (overflow, spacing)
This commit is contained in:
Imran Remtulla
2023-04-06 22:37:24 -04:00
parent 49affd1bd4
commit 0804e680b2
12 changed files with 37 additions and 3 deletions

View File

@@ -267,7 +267,10 @@ class _GeneratedFormState extends State<GeneratedForm> {
formInputs[r][e] = Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(widget.items[r][e].label),
Flexible(child: Text(widget.items[r][e].label)),
const SizedBox(
width: 8,
),
Switch(
value: values[widget.items[r][e].key],
onChanged: (value) {