diff options
author | Tomi Leppänen <tomi.leppanen@seafarix.com> | 2024-11-29 19:02:46 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-12-02 11:35:56 +0000 |
commit | dcb37db76c4764643d0c1e975802f64c78df0f7a (patch) | |
tree | 7bfc9a7ee28bd9892ed479763166f12ed6cc5512 | |
parent | daf4b42f8868a38f1598a5a6d2f0da99389ea08e (diff) |
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 <tomi.leppanen@seafarix.com>
-rw-r--r-- | lib/presentation/screens/apps/apps_content.dart | 2 |
1 files changed, 1 insertions, 1 deletions
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<Apps> { 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, |