You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I won't have time to create one if someone feels like doing a PR, feel free.
You can try the really basic implementation and then have a play with the props I guess.
import * as React from 'react'
import {
StyleSheet, View
} from "react-native"
import PINCode from '@haskkor/react-native-pincode'
type IProps = {}
type IState = {}
class PinCode extends React.PureComponent<IProps, IState> {
render() {
return (
<View style={{flex: 1}}>
<PINCode
status={'enter'}
/>
</View>
)
}
}
export default PinCode
const styles = StyleSheet.create({})
You could define the status ('choose', 'enter' or 'locked') in your state and change it based on the result functions ('endProcessFunction' etc).
could someone please put a demo in this repository?
The text was updated successfully, but these errors were encountered: