#usmseong_29857
1 messages · Page 1 of 1 (latest)
Hi there 👋 are you looking for how to enable the collection of billing details:
https://docs.stripe.com/payments/accept-a-payment?platform=react-native&ui=payment-sheet#collect-billing-details
Or have you already done that but are having trouble finding those values after a customer completes a payment?
on the web using PaymentRequestElement
I can retrieve billing address so I can pass it to backend without asking users to fill up billing information
however it doesn't seem work that way on React Native as PaymentRequestElement is web only element
Yup, the Payment Request Button is not available for React Native projects, so I'm trying to grasp what type of integration you're looking into for the React Native side of your flow.
Apple Pay
and Google Pay
so basically we don't want users to enter billing address on my react native app when they do Apple Pay in the checkout screen
this is already done in web using PaymentRequestElement
and i'm trying to do the same thing on React Native
I think you want to look at the guide I linked above for accepting a payment in a React Native project then. The overall guide is likely useful, and the specific section I linked to shows how to set up the flow to collect billing details from your customers.