From dcb37db76c4764643d0c1e975802f64c78df0f7a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tomi=20Lepp=C3=A4nen?= Date: Fri, 29 Nov 2024 19:02:46 +0200 Subject: [PATCH] Change app grid bottom padding MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This leaves more space to the end of the app grid so that when scrolled all they down, the last icons do not overlap with bottom bar. All other paddings should remain the same as before. Bug-AGL: SPEC-5297 Change-Id: If79374ab1c815a5c7160c1f391e3f0dacd089de8 Signed-off-by: Tomi Leppänen --- lib/presentation/screens/apps/apps_content.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/screens/apps/apps_content.dart b/lib/presentation/screens/apps/apps_content.dart index eb7beb9..18f91b6 100644 --- a/lib/presentation/screens/apps/apps_content.dart +++ b/lib/presentation/screens/apps/apps_content.dart @@ -31,7 +31,7 @@ class _AppsState extends ConsumerState { const CommonTitle(title: "Applications"), Expanded( child: GridView.builder( - padding: const EdgeInsets.symmetric(vertical: 50, horizontal: 148), + padding: const EdgeInsets.fromLTRB(148, 50, 148, 150), scrollDirection: Axis.vertical, shrinkWrap: true, itemCount: apps.length, -- 2.16.6