Fix: promos discount query and compact car details layout

This commit is contained in:
Hamza-Ayed
2026-06-26 03:04:22 +03:00
parent a8b10d954c
commit aea0c8e44e
5 changed files with 40 additions and 30 deletions

View File

@@ -53,7 +53,12 @@ class MapEngineController extends GetxController {
double mainBottomMenuMapHeight = Get.height * .2;
double wayPointSheetHeight = 0;
bool heightMenuBool = false;
bool isPickerShown = false;
bool _isPickerShown = false;
bool get isPickerShown => _isPickerShown;
set isPickerShown(bool value) {
_isPickerShown = value;
update();
}
bool isPointsPageForRider = false;
bool isBottomSheetShown = false;
bool reloadStartApp = false;
@@ -678,8 +683,8 @@ class MapEngineController extends GetxController {
}
void changePickerShown() {
isPickerShown = !isPickerShown;
heightPickerContainer = isPickerShown == true ? 150 : 90;
_isPickerShown = !_isPickerShown;
heightPickerContainer = _isPickerShown == true ? 150 : 90;
update();
}