React-Native component to input confirmation code for both Android and IOS
- customizable
- fast paste SMS-code
- copy from clipboard
- reset code
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>
)
}
}
interface Props extends TextInputProps {
autofocus?: boolean
numberOfDigits?: number
onFulfill?(code: string): void
}
Looking for a ReactNative freelance expert with more than 12 years experience? Contact me from my website!