This commit is contained in:
Hamza-Ayed
2024-10-14 11:50:33 +03:00
parent 9854f80971
commit d6200e28e0
11 changed files with 843 additions and 670 deletions

View File

@@ -133,7 +133,7 @@ class WalletCaptain extends StatelessWidget {
.tr);
},
child: const Icon(Icons.headphones)),
'${'Total Amount:'.tr} ${captainWalletController.totalAmount}\$',
'${'Total Amount:'.tr} ${captainWalletController.totalAmount} ${'L.E'.tr}',
'This amount for all trip I get from Passengers'
.tr,
duration: const Duration(seconds: 6),
@@ -163,7 +163,7 @@ class WalletCaptain extends StatelessWidget {
},
child: const Icon(Icons.headphones),
),
'${'Total Amount:'.tr} ${captainWalletController.totalAmountVisa}\$',
'${'Total Amount:'.tr} ${captainWalletController.totalAmountVisa} ${'L.E'.tr}',
'This amount for all trip I get from Passengers and Collected For me in'
.tr +
' ${AppInformation.appName} Wallet'
@@ -296,7 +296,7 @@ class WalletCaptain extends StatelessWidget {
child: Padding(
padding: const EdgeInsets.all(8),
child: Text(
'$amount\$',
'$amount ${'L.E'.tr}',
style:
const TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
),