fix bottomsheel
This commit is contained in:
@ -152,6 +152,9 @@ class DestinationController extends GetxController {
|
||||
if (is_photo_shoot.value == true) {
|
||||
photos.clear();
|
||||
showModalBottomSheet(
|
||||
constraints: BoxConstraints.loose(Size(
|
||||
Get.width,
|
||||
Get.height * 0.75)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => CameraPage())).whenComplete(() {
|
||||
@ -174,6 +177,9 @@ class DestinationController extends GetxController {
|
||||
is_in_checkin.value = true;
|
||||
is_at_start.value = true;
|
||||
showModalBottomSheet(
|
||||
constraints: BoxConstraints.loose(Size(
|
||||
Get.width,
|
||||
Get.height * 0.75)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => BottomSheetNew())).whenComplete(() {
|
||||
@ -187,6 +193,9 @@ class DestinationController extends GetxController {
|
||||
chekcs = 2;
|
||||
is_in_checkin.value = true;
|
||||
showModalBottomSheet(
|
||||
constraints: BoxConstraints.loose(Size(
|
||||
Get.width,
|
||||
Get.height * 0.75)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => BottomSheetNew())).whenComplete(() {
|
||||
@ -223,6 +232,9 @@ class DestinationController extends GetxController {
|
||||
is_in_checkin.value = true;
|
||||
photos.clear();
|
||||
showModalBottomSheet(
|
||||
constraints: BoxConstraints.loose(Size(
|
||||
Get.width,
|
||||
Get.height * 0.75)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => CameraPage(
|
||||
@ -273,6 +285,9 @@ class DestinationController extends GetxController {
|
||||
is_at_goal.value = true;
|
||||
photos.clear();
|
||||
showModalBottomSheet(
|
||||
constraints: BoxConstraints.loose(Size(
|
||||
Get.width,
|
||||
Get.height * 0.75)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => CameraPage(
|
||||
@ -290,6 +305,9 @@ class DestinationController extends GetxController {
|
||||
chekcs = 6;
|
||||
is_at_start.value = true;
|
||||
showModalBottomSheet(
|
||||
constraints: BoxConstraints.loose(Size(
|
||||
Get.width,
|
||||
Get.height * 0.75)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => BottomSheetNew())).whenComplete(() {
|
||||
@ -395,6 +413,9 @@ class DestinationController extends GetxController {
|
||||
is_in_checkin.value = true;
|
||||
photos.clear();
|
||||
showModalBottomSheet(
|
||||
constraints: BoxConstraints.loose(Size(
|
||||
Get.width,
|
||||
Get.height * 0.75)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => CameraPage(
|
||||
|
||||
Reference in New Issue
Block a user