This commit is contained in:
Hamza-Ayed
2023-10-01 21:54:03 +03:00
parent 5ca5d91cc9
commit 0368a141d7
13 changed files with 216 additions and 39 deletions

View File

@@ -74,10 +74,10 @@ class CashConfirmPageShown extends StatelessWidget {
),
const Spacer(),
Checkbox.adaptive(
value: paymentController.isWalletCheced,
value: paymentController.isWalletChecked,
onChanged: (value) {
paymentController
.onChangedPymentethodWallet(value);
.onChangedPaymentMethodWallet(value);
},
)
],
@@ -109,10 +109,10 @@ class CashConfirmPageShown extends StatelessWidget {
const Spacer(),
GetBuilder<PaymentController>(
builder: (controller) => Checkbox.adaptive(
value: controller.isCashCheced,
value: controller.isCashChecked,
onChanged: (value) {
controller
.onChangedPymentethodCash(value);
.onChangedPaymentMethodCash(value);
},
))
],