From: Tomi Leppänen Date: Fri, 29 Nov 2024 17:02:46 +0000 (+0200) Subject: Change app grid bottom padding X-Git-Tag: 19.90.0~2 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F00%2F30600%2F2;p=apps%2Fflutter-ics-homescreen.git Change app grid bottom padding 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 --- 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,