UNPKG

react-native-i-text-input

Version:

RNITextInput allows you to use ios12 OTP auto fill feature. Now, if you get a one-time password (OTP) via a text message, iOS 12 will display an auto-fill prompt, which will help you quickly paste it in the app

10 lines (6 loc) 195 B
import { requireNativeComponent, TextInput, Platform, } from 'react-native'; const { OS } = Platform; export default OS === 'ios' ? requireNativeComponent('RNITextInput') : TextInput;