rn-verifcode
v0.0.1
Published
React-Native component to input confirmation code for both Android and IOS
Downloads
15
Maintainers
Readme
rn-verifcode
React-Native component to input confirmation code for both Android and IOS
- customizable
- fast paste SMS-code
- copy from clipboard
- reset code
How to use it ?
import * as React from 'react'
import { View, Button } from 'react-native'
import VerifCode from './src'
export default class App extends React.Component {
state = {}
ref = React.createRef()
render() {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<VerifCode ref={this.ref} onFulfill={code => alert(code)} />
<Button title="reset" onPress={() => this.ref.current.reset()} />
</View>
)
}
}
Props
interface Props extends TextInputProps {
autofocus?: boolean
numberOfDigits?: number
onFulfill?(code: string): void
}