4/11/4
This commit is contained in:
@@ -444,7 +444,8 @@ class MyTranslation extends Translations {
|
||||
' H and': "ساعة و",
|
||||
'Hello this is Driver': "مرحبا هذا السائق",
|
||||
'Is the Passenger in your Car ?': "هل الراكب في سيارتك؟",
|
||||
'don\'t start trip if not ': "لا تبدأ الرحلة إذا لم يكن",
|
||||
'Please wait for the passenger to enter the car before starting the trip.':
|
||||
"لا تبدأ الرحلة إذا لم يكن الراكب في سيارتك",
|
||||
'No ,still Waiting.': "لا، مازالت في الإنتظار.",
|
||||
'I arrive you': "وصلت إليك",
|
||||
'I Arrive your site': "وصلت إلى موقعك",
|
||||
|
||||
@@ -65,13 +65,35 @@ GetBuilder<MapDriverController> driverEndRideBar() {
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
||||
children: [
|
||||
const Icon(Icons.timer),
|
||||
Text(mapDriverController.stringRemainingTimeRideBegin1),
|
||||
const Icon(Icons.location_on),
|
||||
Text(
|
||||
'${mapDriverController.recentDistanceToDash.toStringAsFixed(0)} ${'KM'.tr}'),
|
||||
const Icon(Icons.attach_money),
|
||||
Text(mapDriverController.price.toStringAsFixed(2)),
|
||||
Container(
|
||||
decoration: AppStyle.boxDecoration1,
|
||||
child: Row(
|
||||
children: [
|
||||
const Icon(Icons.timer),
|
||||
Text(mapDriverController
|
||||
.stringRemainingTimeRideBegin1),
|
||||
],
|
||||
)),
|
||||
Container(
|
||||
decoration: AppStyle.boxDecoration1,
|
||||
child: Row(
|
||||
children: [
|
||||
const Icon(Icons.location_on),
|
||||
Text(
|
||||
'${mapDriverController.recentDistanceToDash.toStringAsFixed(0)} ${'KM'.tr}'),
|
||||
],
|
||||
),
|
||||
),
|
||||
Container(
|
||||
decoration: AppStyle.boxDecoration1,
|
||||
child: Row(
|
||||
children: [
|
||||
const Icon(Icons.attach_money),
|
||||
Text(
|
||||
mapDriverController.price.toStringAsFixed(2)),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
(mapDriverController.carType == 'Mashwari' ||
|
||||
|
||||
@@ -44,9 +44,16 @@ class RideBeginPassenger extends StatelessWidget {
|
||||
backgroundImage: NetworkImage(
|
||||
'https://ride.mobile-app.store/portrate_captain_image/${controller.driverId}.jpg'),
|
||||
),
|
||||
Text(
|
||||
controller.firstName,
|
||||
style: AppStyle.title,
|
||||
Container(
|
||||
decoration: AppStyle.boxDecoration1,
|
||||
child: Column(
|
||||
children: [
|
||||
Text(
|
||||
controller.firstName,
|
||||
style: AppStyle.title,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
Column(
|
||||
children: [
|
||||
|
||||
Reference in New Issue
Block a user