105 lines
3.9 KiB
Dart
105 lines
3.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:SEFER/constant/colors.dart';
|
|
import 'package:SEFER/constant/style.dart';
|
|
import 'package:SEFER/controller/home/map_passenger_controller.dart';
|
|
|
|
import '../../widgets/elevated_btn.dart';
|
|
|
|
GetBuilder<MapPassengerController> cancelRidePage() {
|
|
Get.put(MapPassengerController());
|
|
final List<String> reasons = [
|
|
"I don't need a ride anymore".tr,
|
|
"I was just trying the application".tr,
|
|
"No driver accepted my request".tr,
|
|
"I added the wrong pick-up/drop-off location".tr,
|
|
"I don't have a reason".tr,
|
|
"Other".tr,
|
|
];
|
|
return GetBuilder<MapPassengerController>(
|
|
builder: (controller) => controller.isCancelRidePageShown
|
|
? Positioned(
|
|
left: Get.width * .1,
|
|
top: Get.width * .2,
|
|
right: Get.width * .1,
|
|
bottom: Get.width * .15,
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
color: AppColor.secondaryColor,
|
|
boxShadow: [
|
|
const BoxShadow(
|
|
color: AppColor.accentColor,
|
|
offset: Offset(2, 2),
|
|
blurRadius: 5),
|
|
BoxShadow(
|
|
color: AppColor.accentColor.withOpacity(.4),
|
|
offset: const Offset(-2, -2),
|
|
blurRadius: 5)
|
|
],
|
|
borderRadius: const BorderRadius.all(Radius.circular(15)),
|
|
),
|
|
height: Get.height * .7,
|
|
width: Get.width * .7,
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 10),
|
|
child: Text(
|
|
'Can we know why you want to cancel Ride ?'.tr,
|
|
style: AppStyle.title,
|
|
textAlign: TextAlign.center,
|
|
),
|
|
),
|
|
SizedBox(
|
|
height: 380,
|
|
width: 300,
|
|
child: ListView.builder(
|
|
itemCount: reasons.length,
|
|
itemBuilder: (context, index) {
|
|
return ListTile(
|
|
title: InkWell(
|
|
onTap: () {
|
|
controller.selectReason(
|
|
index,
|
|
reasons[index].toString(),
|
|
);
|
|
},
|
|
child: Text(
|
|
reasons[index],
|
|
style: AppStyle.title,
|
|
)),
|
|
leading: Radio(
|
|
value: index,
|
|
groupValue: controller.selectedReason,
|
|
onChanged: (int? value) {
|
|
controller.selectReason(
|
|
value!,
|
|
reasons[index].toString(),
|
|
);
|
|
},
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
MyElevatedButton(
|
|
title: 'Cancel Ride'.tr,
|
|
onPressed: () {
|
|
if (controller.selectedReason == -1) {
|
|
Get.snackbar('You Should be select reason.'.tr, '',
|
|
snackPosition: SnackPosition.BOTTOM,
|
|
backgroundColor: AppColor.redColor);
|
|
} else {
|
|
controller.cancelRide();
|
|
}
|
|
},
|
|
),
|
|
],
|
|
),
|
|
),
|
|
)
|
|
: const SizedBox(),
|
|
);
|
|
}
|