diff --git a/lib/page/category/category_view.dart b/lib/page/category/category_view.dart index a2582ca..9903b79 100644 --- a/lib/page/category/category_view.dart +++ b/lib/page/category/category_view.dart @@ -34,7 +34,10 @@ class CategoryView extends GetView { child: ListView.separated( controller: controller.scrollController, physics: const BouncingScrollPhysics(), - padding: const EdgeInsets.only(top: 10).w, + padding: EdgeInsets.only( + top: 10, + bottom: MediaQuery.of(context).padding.bottom, + ).w, itemCount: controller.categoryData.length, itemBuilder: (context, index) { List keys = controller.categoryData.keys.toList(); diff --git a/lib/page/cls_det/cls_det_view.dart b/lib/page/cls_det/cls_det_view.dart index 57d0900..9c03c2f 100644 --- a/lib/page/cls_det/cls_det_view.dart +++ b/lib/page/cls_det/cls_det_view.dart @@ -34,7 +34,12 @@ class ClsDetView extends GetView { crossAxisCount: 2, mainAxisSpacing: 20.w, crossAxisSpacing: 21.w, - padding: const EdgeInsets.fromLTRB(16, 32, 16, 0).w, + padding: EdgeInsets.fromLTRB( + 16, + 32, + 16, + MediaQuery.of(context).padding.bottom, + ).w, itemBuilder: (context, index) { ImageModel item = controller.wallpaperList[index]; return GestureDetector(