fix : some ui bug

This commit is contained in:
2025-09-20 17:03:11 +03:30
parent 0fc82c8eb9
commit bbd572c579
7 changed files with 204 additions and 33 deletions

View File

@@ -28,11 +28,13 @@ class ModulesPage extends GetView<ModulesLogic> {
Positioned.fill(
child: Column(
children: [
SizedBox(height: 24.h),
SizedBox(height: 12.h),
SliderWidget(widgetTag: "up"),
Expanded(
SizedBox(
height: 244.h,
child: GridView.builder(
padding: EdgeInsets.symmetric(horizontal: 25.w, vertical: 24.h),
itemBuilder: (context, index) {
final module = controller.moduleList[index];
@@ -47,10 +49,10 @@ class ModulesPage extends GetView<ModulesLogic> {
},
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3,
mainAxisSpacing: 24.h,
mainAxisSpacing: 22.h,
crossAxisSpacing: 16.w,
),
physics: BouncingScrollPhysics(),
physics: NeverScrollableScrollPhysics(),
itemCount: controller.moduleList.length,
),
),