This commit is contained in:
Hamza Aleghwairyeen
2024-04-03 23:39:36 +03:00
parent b1d9cb9fca
commit a80bc50c0d
4 changed files with 38 additions and 28 deletions

View File

@@ -39,8 +39,7 @@ class RideBeginPassenger extends StatelessWidget {
Column(
children: [
Text(
// 'You will arrive to your destination after timer end.'.tr,
'Time to arrive'.tr,
'⏱️ Arrive',
style: AppStyle.title,
),
Text(
@@ -52,7 +51,7 @@ class RideBeginPassenger extends StatelessWidget {
Column(
children: [
Text(
'Total Cost'.tr,
' Total',
style: AppStyle.title,
),
Text(
@@ -61,26 +60,16 @@ class RideBeginPassenger extends StatelessWidget {
),
],
),
Row(
children: [
Column(
children: [
Text('Write note'.tr),
IconButton(
onPressed: () {
Get.to(
() => FeedBackPage(),
transition: Transition.downToUp,
);
},
icon: const Icon(
Icons.note_add,
color: AppColor.redColor,
),
),
],
),
],
IconButton(
onPressed: () => Get.to(
() => FeedBackPage(),
transition: Transition.downToUp,
),
icon: const Icon(
Icons.note_add,
color: AppColor.redColor,
),
tooltip: ' Add Note', // Optional tooltip for clarity
),
],
),