4/3/12
This commit is contained in:
@@ -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
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user