From 7cf7ffe0de36775b5bf12f34a426ae4447f376dd Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Sun, 30 Oct 2022 12:48:26 -0400 Subject: [PATCH] Fixed icon size on App page (#78) --- 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 f9d60a2..2650f60 100644 --- a/lib/pages/app.dart +++ b/lib/pages/app.dart @@ -62,10 +62,13 @@ class _AppPageState extends State { children: [ Image.memory( app!.installedInfo!.icon!, - scale: 1.5, + height: 150, ) ]) : Container(), + const SizedBox( + height: 25, + ), Text( app?.installedInfo?.name ?? app?.app.name ?? 'App', textAlign: TextAlign.center,