fix marker rendering & modernize riding widgets for dark mode - 2026-04-11

This commit is contained in:
Hamza-Ayed
2026-04-11 01:14:09 +03:00
parent 3f03f25142
commit 454276d1e0
88 changed files with 50376 additions and 23310 deletions

View File

@@ -207,7 +207,7 @@ class PassengerWallet extends StatelessWidget {
subtitle: Text(subtitle.tr,
style: AppStyle.subtitle
.copyWith(color: AppColor.writeColor.withOpacity(0.6))),
trailing: const Icon(Icons.arrow_forward_ios_rounded,
trailing: Icon(Icons.arrow_forward_ios_rounded,
size: 16, color: AppColor.writeColor),
);
}

View File

@@ -1,3 +1,4 @@
import 'package:Intaleq/print.dart';
import 'package:Intaleq/constant/style.dart';
import 'package:Intaleq/controller/functions/encrypt_decrypt.dart';
import 'package:flutter/cupertino.dart';
@@ -457,7 +458,7 @@ void showPaymentOptions(BuildContext context, PaymentController controller) {
);
if (!didAuthenticate) {
print("❌ User did not authenticate with biometrics");
Log.print("❌ User did not authenticate with biometrics");
return;
}
}
@@ -495,4 +496,4 @@ void showPaymentOptions(BuildContext context, PaymentController controller) {
),
),
);
}
}