react-native-input-clonable
v1.0.1
Published
[![npm version](https://badge.fury.io/js/react-native-input-clonable.svg)](https://badge.fury.io/js/react-native-input-clonable) [![Downloads](http://img.shields.io/npm/dy/react-native-input-clonable.svg?style=flat-square)](https://img.shields.io/npm/dy/r
Downloads
6
Maintainers
Readme
React Native Input Clonable
Create customizable inputs clonables.
Works with Android and iOS.
Demo
Installation
foo@bar:~$ npm install --save react-native-input-clonable
Usage
import MultipleTextInput from 'react-native-input-clonable';
// Your code here
<MultipleTextInput
autoCapitalize={'none'}
textInputPlaceholder='Email'
textInputKeyboardType='email-address'
textInputs={[{ text: '[email protected]' }, { text: '[email protected]' }]}
onAdd={() => console.log("onAdd")}
onRemove={(index) => console.log("onRemove", index)}
onChangeText={(input, index) => console.log("onChangeText", input, index)}
maxTextInput={10}
inputStyle={{ fontSize: 14, width: 190 }}
/>
Props