Credit Card Autofill Not Working in React Native TextInput

Hello,

I'm currently investigating an issue related to iOS credit card autofill (Payments & Card Details) in our mobile application.

Our app is built using React Native, and we are implementing card input fields using TextInput with the required autofill configuration:

  • autoComplete="cc-number"
  • textContentType="creditCardNumber"

Despite correctly configuring these properties, credit card autofill is not being triggered on iOS devices.

I would appreciate clarification on:

  • Is credit card autofill officially supported for React Native TextInput fields using autoComplete="cc-number" and textContentType="creditCardNumber"?
  • Are there any additional requirements (entitlements, associated domains, specific configurations, etc.) needed for payment autofill to work?
  • Is autofill expected to work inside WKWebView contexts?
  • Are there any known limitations or restrictions for third-party frameworks such as React Native?

I would appreciate any guidance or documentation you can share regarding the expected behavior and official support for this scenario

Credit Card Autofill Not Working in React Native TextInput
 
 
Q