fix : some ui bug
This commit is contained in:
@@ -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,
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user