All Projects → danchokobo → React Native Code Verification

danchokobo / React Native Code Verification

Licence: mit
❤️ Simple UI for pincode verification

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Native Code Verification

SwiftyCodeView
Fully customizable UI Component for verification codes written in swift with RxSwift support!
Stars: ✭ 86 (-21.1%)
Mutual labels:  code, verification
VerificationCode
简单的滑动验证码JS插件 图片验证码
Stars: ✭ 15 (-86.24%)
Mutual labels:  code, verification
react-native-sms-user-consent
React Native wrapper for Android's SMS User Consent API, ready to use in React Native apps with minimum effort.
Stars: ✭ 45 (-58.72%)
Mutual labels:  code, verification
Sniprun
A neovim plugin to run lines/blocs of code (independently of the rest of the file), supporting multiples languages
Stars: ✭ 93 (-14.68%)
Mutual labels:  code
Minasmsverification
短信验证:基于阿里云的 微信小程序 功能模块: 直接用 / mini-program + Node.js + Alibaba Cloud / Front & Back End
Stars: ✭ 94 (-13.76%)
Mutual labels:  verification
Verifyedittext
带下划线的验证码输入框
Stars: ✭ 103 (-5.5%)
Mutual labels:  verification
Tlaplus
TLC is an explicit state model checker for specifications written in TLA+. The TLA+Toolbox is an IDE for TLA+.
Stars: ✭ 1,618 (+1384.4%)
Mutual labels:  verification
Sea Dsa
A new context, field, and array-sensitive heap analysis for LLVM bitcode based on DSA.
Stars: ✭ 90 (-17.43%)
Mutual labels:  verification
Code
code
Stars: ✭ 107 (-1.83%)
Mutual labels:  code
Brightid
Reference mobile app for BrightID
Stars: ✭ 101 (-7.34%)
Mutual labels:  verification
Hacl Star
HACL*, a formally verified cryptographic library written in F*
Stars: ✭ 1,360 (+1147.71%)
Mutual labels:  verification
Body reconstruction references
Paper, dataset and code collection on human body reconstruction
Stars: ✭ 96 (-11.93%)
Mutual labels:  code
Multi Object Tracking Paper List
Paper list and source code for multi-object-tracking
Stars: ✭ 1,508 (+1283.49%)
Mutual labels:  code
Phpstorm Solarized
Solarized theme for JetBrains PhpStorm
Stars: ✭ 93 (-14.68%)
Mutual labels:  code
Letters
Письма к студентам курса
Stars: ✭ 107 (-1.83%)
Mutual labels:  code
Devel Cover
Code coverage metrics for Perl
Stars: ✭ 91 (-16.51%)
Mutual labels:  code
Thimble.mozilla.org
UPDATE: This project is no longer maintained. Please check out Glitch.com instead.
Stars: ✭ 1,414 (+1197.25%)
Mutual labels:  code
Javascript Stringify
Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`
Stars: ✭ 98 (-10.09%)
Mutual labels:  code
Hid Examples
Examples to accompany the book "Haskell in Depth"
Stars: ✭ 96 (-11.93%)
Mutual labels:  code
Awesome Open Hardware Verification
A List of Free and Open Source Hardware Verification Tools and Frameworks
Stars: ✭ 103 (-5.5%)
Mutual labels:  verification

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].