react-native-otp-code-input
v0.2.0
Published
A code input component for react native
Downloads
3
Readme
react-native-code-input
A code input component for react native
Installation
npm install react-native-otp-code-input
Usage
import { CodeInput } from 'react-native-otp-code-input'
const [code, setCode] = useState<string>('')
<CodeInput
value={code}
onValueChange={(code) => {
console.log(`Code changed ${code}`)
setCode(code)
}}
onFilled={(code) => {
console.log(`Code filled ${code}`)
}}
length={6}
/>
For more info see the example
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library