react-native-normal-textinput
v1.0.0
Published
react native normal text input with left and right image
Downloads
9
Readme
React native normal custom text input
react-native-normal-textinput
Installation
Javascript
For the javascript part of the installation you need to run
npm install react-native-normal-textinput
or
yarn react-native-normal-textinput
Usage
import {Input} from 'react-native-normal-button'
import User from '../assets/User.svg';
<Input
placeholder="First Name"
onChangeText={setUserName()}
onBlur={}
value={useName}
touched={} // use for for error message
errors={''} // use for show show error message
LeftIcon={User} // use for show left icon
RightIcon={User} // use for show right icon
/>