stripe-react-native
stripe-react-native copied to clipboard
React Native library for Stripe.
**Is your feature request related to a problem? Please describe.** Is `additionalEnabledApplePayNetworks` already compatible with `cartesBancaires` network ? https://github.com/stripe/stripe-react-native/blob/36d9d3f54d815279e3e3a1eab3b85309fcccd883/ios/ApplePayUtils.swift#L21-L24 **Describe the solution you'd like** Pass `additionalEnabledNetworks: ["cartesBancaires"],` in params of...
**Describe the bug** Cannot build on iOS using Xcode 13.2.1 **To Reproduce** Steps to reproduce the behavior: 1. Use Xcode 13.2.1 to build 0.29.0 or greater **Expected behavior** A clear...
**Is your feature request related to a problem? Please describe.** Users still using 0.19.0 don't have the SDK reference. **Describe the solution you'd like** Create a separate page showing SDK...
App.js ``` ``` ProductList.js ``` const { confirmPayment, initPaymentSheet, presentPaymentSheet } = useStripe(); useEffect(() => { fetch('http://172.20.10.2:5000/payments/create-payment-intent') .then((res) => { return res.json(); }) .then(res => { setKey(res.client_secret) initPaymentSheet({paymentIntentClientSecret: key}); })...
**Describe the bug** I was using react-native `0.64.4` version and stripe `"@stripe/stripe-react-native": "^0.28.0"`. It was working fine with `Xcode14.2`. So for some requirements, we have to upgrade react-native to version...
**Is your feature request related to a problem? Please describe.** I'm currently using the Mobile Payment Element with **`customFlow`** and **`confirmHandler`**, following the [documentation](https://docs.stripe.com/payments/accept-a-payment-deferred?platform=react-native&type=payment&integration=paymentsheet-flowcontroller). However, I'm encountering difficulty retrieving the...
**Is your feature request related to a problem? Please describe.** Our use case requires to stay out of PCI compliance by gathering only non-sensitive card detail like the card holder...
**Describe the bug** When trying to use a font name with an underscore on Android in the **appearance** parameter for PaymentSheet, an error is incorrectly resolved: _Encountered an error when...
## Summary Changed regex expression to allow for underscores in fonts on Android as well, and updated the error to reflect this. ## Motivation See #1636 ## Testing - [x]...
**Describe the bug** The Paymentsheet offers a close button that closes the presented sheet with an error: The payment option selection flow has been cancelled. When I try to open...