diff options
-rw-r--r-- | lib/presentation/screens/apps/apps_content.dart | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/presentation/screens/apps/apps_content.dart b/lib/presentation/screens/apps/apps_content.dart index b0afda1..eb7beb9 100644 --- a/lib/presentation/screens/apps/apps_content.dart +++ b/lib/presentation/screens/apps/apps_content.dart @@ -29,9 +29,9 @@ class _AppsState extends ConsumerState<Apps> { crossAxisAlignment: CrossAxisAlignment.stretch, children: [ const CommonTitle(title: "Applications"), - Padding( - padding: const EdgeInsets.symmetric(vertical: 50, horizontal: 148), + Expanded( child: GridView.builder( + padding: const EdgeInsets.symmetric(vertical: 50, horizontal: 148), scrollDirection: Axis.vertical, shrinkWrap: true, itemCount: apps.length, |