This commit is contained in:
Hamza-Ayed
2024-09-17 00:57:13 +03:00
parent 1b50de9a7c
commit a65e7e5562
3 changed files with 51 additions and 11 deletions

View File

@@ -79,7 +79,7 @@ class PassengerWalletDialog extends StatelessWidget {
Radio(
value:
box.read(BoxName.countryCode) == 'Egypt'
? 200
? 210
: 20,
groupValue: controller.selectedAmount,
onChanged: (value) {
@@ -89,7 +89,7 @@ class PassengerWalletDialog extends StatelessWidget {
),
Text(
box.read(BoxName.countryCode) == 'Egypt'
? '200 ${'LE'.tr} '.tr
? '${'200 ${'LE'.tr} '.tr} = 205 ${'LE'.tr}'
: '20 ${'JOD'.tr}'.tr,
style: AppStyle.title,
),
@@ -104,7 +104,7 @@ class PassengerWalletDialog extends StatelessWidget {
Radio(
value:
box.read(BoxName.countryCode) == 'Egypt'
? 400
? 415
: 40,
groupValue: controller.selectedAmount,
onChanged: (value) {
@@ -114,7 +114,7 @@ class PassengerWalletDialog extends StatelessWidget {
),
Text(
box.read(BoxName.countryCode) == 'Egypt'
? '400 ${'LE'.tr} '.tr
? '${'400 ${'LE'.tr} '.tr} = 415 ${'LE'.tr}'
: '40 ${'JOD'.tr}'.tr,
style: AppStyle.title,
),
@@ -129,7 +129,7 @@ class PassengerWalletDialog extends StatelessWidget {
Radio(
value:
box.read(BoxName.countryCode) == 'Egypt'
? 1000
? 1100
: 50,
groupValue: controller.selectedAmount,
onChanged: (value) {
@@ -139,7 +139,7 @@ class PassengerWalletDialog extends StatelessWidget {
),
Text(
box.read(BoxName.countryCode) == 'Egypt'
? '1000 ${'LE'.tr} '.tr
? '${'1000 ${'LE'.tr} '.tr} = 1100 ${'LE'.tr}'
: '50 ${'JOD'.tr}'.tr,
style: AppStyle.title,
),