react-native-umpin
Version:
pin input for react-native
27 lines (17 loc) • 367 B
Markdown
PIN INPUT for REACT-NATIVE
```sh
npm install react-native-umpin
```
```js
import UMPinInput from 'react-native-umpin';
// ...
const [pin, setPine] = useState()
<UMPinInput
styleContainer={{ width: "100%", marginBottom: 15 }}
size={5} beadBg="orange"
value={pin} onChangeText={e=> setPine(e)}
/>
```