Fix: promos discount query and compact car details layout
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user