flutter_stripe_payment
flutter_stripe_payment copied to clipboard
[URGENT] How to customize the layout of paymentRequestWithCardForm pop-up?
what I wanna achieve is customizing the pop-up of filling up the credit card details such that the user can input a name, address, etc. as well as the "Save" button's text.
PaymentMethod paymentMethod = PaymentMethod();
paymentMethod = await StripePayment.paymentRequestWithCardForm(
CardFormPaymentRequest(),
).then((PaymentMethod paymentMethod) {
return paymentMethod;
}).catchError((e) {
log('Errore Card: ${e.toString()}');
});
Hi @enkr1 , I am also looking for same, did you manage to update the UI?
Hi @enkr1 , I am also looking for same, did you manage to update the UI?
Still researching
Okay, let me know if you find anything and I will do the same If find anything. Cheers!
Okay, let me know if you find anything and I will do the same If find anything. Cheers!
I found an alternative solution which is using https://pub.dev/packages/flutter_credit_card to create a card first then, proceed to create the payment method and so.
hopefully it helps.
Thanks mate! I will try the same!
Okay, let me know if you find anything and I will do the same If find anything. Cheers!
I found an alternative solution which is using https://pub.dev/packages/flutter_credit_card to create a card first then, proceed to create the payment method and so.
hopefully it helps.
Great!! Thank you.. I could implement it like you mentioned and the result was really good! Thank you!