some ui bug
This commit is contained in:
2025-04-22 15:08:01 +03:30
parent 9751c5cee4
commit a45c0807d1
5 changed files with 17 additions and 16 deletions

View File

@@ -116,12 +116,13 @@ class DraggableBottomSheetController extends GetxController {
});
}
}
bool handleBack() {
if (bottomSheets.isNotEmpty) {
removeLastBottomSheet();
return true;
}
return false;
bool get handleBack{
if (bottomSheets.isNotEmpty) {
removeLastBottomSheet();
return true;
}
return false;
}
}