1.0.4 • Published 4 years ago

react-native-code-textinput v1.0.4

Weekly downloads
6
License
-
Repository
github
Last release
4 years ago

react-native-code-textinput

Input code component for React Native on iOS and Android.

Examples

React Native Code Input Squared React Native Code Input Rounded React Native Code Input with Border React Native Code Input Video1 React Native Code Input Video2 React Native Code Input Video1

Setup

npm install --save react-native-code-textinput

Usage

import CodeInput from 'react-native-code-textinput';
...
<CodeInput 
        codeSize={4} 
        prefilledValue={"1234"}  
        onValueChange={(val) => { }} 
        inputStyle={styles.input_style} >
</CodeInput>
...

Properties

namedescriptiontype
codeSizeSize of the code (Number of TextInput to display)Boolean
prefilledValueFill the inputs with default valueString (OPTIONAL)
keyboardTypeOptionsKeyboard type of inputsKeyboardTypeOptions (OPTIONAL)
initValueTextInputDefault value for the TextInputString (OPTIONAL)
inputStyleCustom style of the TextinputsTextStyle (OPTIONAL)
activeStyleCustom style of when inputs are activeTextStyle (OPTIONAL)

Methods

namedescriptionreturns
onValueChange()Event fired when the user fill an inputString