Skip to content

danchokobo/react-native-code-verification

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
June 5, 2018 13:11
June 7, 2018 13:38
June 5, 2018 13:11
June 5, 2018 13:11
June 5, 2018 13:11
June 5, 2018 13:11
June 5, 2018 15:42
June 7, 2018 13:39
June 7, 2018 13:38
June 7, 2018 13:38

react-native-code-verification

An UI module for user-side pincode verification.

Getting started

$ npm i react-native-code-verification --s

Props

Name Type Description Default
descriptionText String A description text Please enter pincode for entry
spaceColor Color Color of line under digit #FF0000
closeButtonColor Color Color of X - close button #FF0000
onEnteredPincode Function A function that returns entered code -
onCloseView Function On press close button, will be useful to close view -
onPressTouchId Function Touch Id is not available, but you can make it by yourself -
withTouchId Boolean If you do not neet touch id, you can set it to false TRUE

Screenshots

Usage

import Pincode from 'react-native-code-verification';

// TODO: What to do with the module?
class Example extends Component {
  public render() {
    return (
      <View style={styles.container}>
        <Pincode onEnteredPincode={pin => this.onDetectPin(pin)} />
      </View>
    );
  }
  private onDetectPin = pin => {
    console.log('pinCode>>>', pin);
  };
}

Credentials

MIT, Otel Danagul

Releases

No releases published

Packages

No packages published