final code

This commit is contained in:
2025-05-12 23:29:53 +05:30
parent f1abe0e179
commit dfee0afba3
3295 changed files with 156140 additions and 12 deletions

View File

@@ -186,17 +186,17 @@ class _CardCheckoutScreenState extends State<CardCheckoutScreen> {
),
// Cash on Delivery (COD) Option
ListTile(
leading: Icon(Icons.money, color: Colors.orange),
title: Text("Cash on Delivery (COD)"),
trailing: paymentProvider.selectedPaymentMethod == "COD"
? Icon(Icons.check_circle, color: Colors.green)
: null,
onTap: () {
paymentProvider.selectPaymentMethod("COD");
// Navigator.pop(context);
},
),
// ListTile(
// leading: Icon(Icons.money, color: Colors.orange),
// title: Text("Cash on Delivery (COD)"),
// trailing: paymentProvider.selectedPaymentMethod == "COD"
// ? Icon(Icons.check_circle, color: Colors.green)
// : null,
// onTap: () {
// paymentProvider.selectPaymentMethod("COD");
// // Navigator.pop(context);
// },
// ),
],
),
);