Skip to content

Instantly share code, notes, and snippets.

@ojja
ojja / OTPInput.tsx
Created June 29, 2024 03:59 — forked from schriker/OTPInput.tsx
Simple React Native One Time Password Input
import React, { useRef } from 'react'
import { NativeSyntheticEvent, TextInput, TextInputKeyPressEventData, View } from 'react-native'
import { useStyles } from 'lib/hooks'
import { createStyles } from 'lib/styles'
import { Nullable } from 'lib/types'
type OTPInputProps = {
length: number,
value: Array<string>,
disabled: boolean,