Tiny UI tweak

This commit is contained in:
Imran Remtulla
2022-08-27 19:27:16 -04:00
parent 30075add1c
commit 4d75a6a361

View File

@@ -298,7 +298,8 @@ class _APKPickerState extends State<APKPicker> {
scrollable: true, scrollable: true,
title: const Text('Pick an APK'), title: const Text('Pick an APK'),
content: Column(children: [ content: Column(children: [
Text('${widget.app.name} has more than one package.'), Text('${widget.app.name} has more than one package:'),
const SizedBox(height: 16),
...widget.app.apkUrls.map((u) => RadioListTile<String>( ...widget.app.apkUrls.map((u) => RadioListTile<String>(
title: Text(Uri.parse(u).pathSegments.last), title: Text(Uri.parse(u).pathSegments.last),
value: u, value: u,