update the app

This commit is contained in:
root
2026-05-25 15:56:00 -04:00
parent 277db06d26
commit 7ca43ba2f3
19 changed files with 1854 additions and 210 deletions
@@ -214,7 +214,7 @@ class _ClientHomeScreenState extends ConsumerState<ClientHomeScreen> {
: '${_selectedTypes.length} types';
final priceLabel = _priceFilterActive
? '\$${(_minPriceCents / 100).toStringAsFixed(0)} \$${(_maxPriceCents / 100).toStringAsFixed(0)}/day'
? '${(_minPriceCents / 100).toStringAsFixed(0)} ${(_maxPriceCents / 100).toStringAsFixed(0)} MAD/day'
: l10n.anyPrice;
return ClientShell(
@@ -995,8 +995,8 @@ class _PriceSheetState extends State<_PriceSheet> {
}
String _fmt(double v) => v >= _PriceSheet._cap
? '\$${v.toStringAsFixed(0)}+'
: '\$${v.toStringAsFixed(0)}';
? '${v.toStringAsFixed(0)}+ MAD'
: '${v.toStringAsFixed(0)} MAD';
@override
Widget build(BuildContext context) {