From af3b71bfe68412d4d23a8c57c38e7e3bc731f6a1 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Tue, 23 Aug 2022 15:39:52 -0400 Subject: [PATCH] Tiny UI tweak --- lib/pages/app.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)) ], )), );