Update: 2026-06-11 18:22:57

This commit is contained in:
Hamza-Ayed
2026-06-11 18:22:59 +03:00
parent c5170a88d2
commit 727068b668
629 changed files with 46050 additions and 46109 deletions

View File

@@ -1,3 +1,4 @@
import 'package:siro_rider/constant/currency.dart';
import 'dart:math' as math;
import 'dart:typed_data';
@@ -191,7 +192,7 @@ class _HistoryCard extends StatelessWidget {
Text('Total Price'.tr,
style: AppStyle.title.copyWith(fontSize: 15)),
Text(
'${ride['price']} ${'SYP'.tr}',
'${ride['price']} ${CurrencyHelper.currency}',
style: AppStyle.headTitle.copyWith(
fontSize: 20, color: AppColor.primaryColor),
),
@@ -559,7 +560,7 @@ class _RideDetailSheetState extends State<_RideDetailSheet> {
color:
AppColor.writeColor.withOpacity(0.55))),
const SizedBox(height: 2),
Text('${ride['price']} ${'SYP'.tr}',
Text('${ride['price']} ${CurrencyHelper.currency}',
style: AppStyle.headTitle.copyWith(
fontSize: 22, color: AppColor.primaryColor)),
],