This commit is contained in:
Hamza-Ayed
2024-05-31 19:19:32 +03:00
parent 794bc8fb24
commit cc76aa394f
8 changed files with 166 additions and 50 deletions

View File

@@ -36,7 +36,7 @@ class SearchingCaptainWindow extends StatelessWidget {
),
),
Text(
'We search nearst Driver to you'.tr,
"We are searching for the nearest driver to you".tr,
style: AppStyle.headTitle2,
),
Text(
@@ -167,9 +167,11 @@ Widget _buildTimer(MapPassengerController mapPassengerController) {
title: "No, thanks",
onPressed: () {
Get.back();
mapPassengerController.cancelRide();
}),
MyElevatedButton(
title: "Increase Fee".tr,
kolor: AppColor.greenColor,
onPressed: () {
mapPassengerController.increaseFeeByPassengerAndReOrder();
})