diff --git a/lib/pages/app.dart b/lib/pages/app.dart index aca64c8..b922c11 100644 --- a/lib/pages/app.dart +++ b/lib/pages/app.dart @@ -95,7 +95,10 @@ class _AppPageState extends State { ), ])), if (app?.downloadProgress != null) - LinearProgressIndicator(value: app!.downloadProgress! / 100) + Padding( + padding: const EdgeInsets.fromLTRB(0, 8, 0, 0), + child: LinearProgressIndicator( + value: app!.downloadProgress! / 100)) ], )), );