Tiny UI tweak

This commit is contained in:
Imran Remtulla
2022-08-23 15:39:52 -04:00
parent e86fa801a3
commit af3b71bfe6

View File

@@ -95,7 +95,10 @@ class _AppPageState extends State<AppPage> {
),
])),
if (app?.downloadProgress != null)
LinearProgressIndicator(value: app!.downloadProgress! / 100)
Padding(
padding: const EdgeInsets.fromLTRB(0, 8, 0, 0),
child: LinearProgressIndicator(
value: app!.downloadProgress! / 100))
],
)),
);