UNPKG

@hirbod/react-native-otp-input

Version:

is a tiny JS library for one time passcode (OTP). Supports smart input suggestion on iOS and code autofill on Android (it will be filled when you press the copy button on the SMS notification bar)

5 lines 264 B
import { Platform } from 'react-native'; const majorVersionIOS = parseInt(String(Platform.Version), 10); export const isAutoFillSupported = (Platform.OS === 'ios' && majorVersionIOS >= 12); export default { isAutoFillSupported }; //# sourceMappingURL=device.js.map