#elite0824
1 messages · Page 1 of 1 (latest)
You can follow this guide if you are trying to take a payment while saving the card
https://stripe.com/docs/payments/save-during-payment?platform=react-native&ui=payment-sheet
And you can follow this guide if you are trying to save the card but don't have any immediate kind of charge that you are trying to make https://stripe.com/docs/payments/save-and-reuse
Thanks. But I want to use this component exactly. Not stripe elements.
Is there a specific reason that you want to use it? Handling card details directly is much riskier and places much higher PCI compliance requirements on you
If so, can I create the token using this component in react-native? I am using react-native 0.72.6.
Tokens are a legacy flow, modern flows use either a PaymentIntent or SetupIntent to create a PaymentMethod
I really wanna use this component. Should I use PaymentIntent or SetupIntent with this component to create a PaymentMethod? If so, plz share the code for react-native.