fix : ui changes pre release

This commit is contained in:
2025-07-20 15:34:13 +03:30
parent cb264c3234
commit e27da8da69
6 changed files with 113 additions and 100 deletions

View File

@@ -55,7 +55,13 @@ class SegmentationPage extends GetView<SegmentationLogic> {
floatingActionButtonLocation: FloatingActionButtonLocation.startFloat,
floatingActionButton: RFab.add(
onPressed: () {
Get.bottomSheet(addOrEditBottomSheet(), isScrollControlled: true);
Get.bottomSheet(
addOrEditBottomSheet(),
isScrollControlled: true,
ignoreSafeArea: false,
).whenComplete(() {
controller.clearForm();
});
},
),
);
@@ -189,6 +195,7 @@ class SegmentationPage extends GetView<SegmentationLogic> {
Get.bottomSheet(
addOrEditBottomSheet(true),
isScrollControlled: true,
ignoreSafeArea: false,
).whenComplete(() {
controller.clearForm();
});
@@ -221,7 +228,7 @@ class SegmentationPage extends GetView<SegmentationLogic> {
Widget addOrEditBottomSheet([bool isOnEdit = false]) {
return BaseBottomSheet(
height: 300.h,
height: 340.h,
child: SingleChildScrollView(
child: Form(
key: controller.formKey,