ESC
React Native Starter AI logo
Menu
On this page

Components > Input

Text Input component can be anywhere in your mobile application; we got your back and React Native Starter AI comes with a beautifully designed and fully customizable Text Input component for you!

React Native Starter AI Core Text Input Component

Text Input is pretty easy to use and pretty flexible to your own needs. Here is the code snippet below:


react-native-starter-mobile/components/any-component.tsx
1import RNTextInput from "components/base/RNTextInput/RNTextInput"; 2... 3 <RNTextInput 4 placeholderTextColor={"rgba(255,255,255,0.5)"} 5 style={styles.textInput} 6 onBlur={onBlur} 7 onChangeText={(value) => onChange(value)} 8 autoCapitalize="none" 9 placeholder="Email Address" 10 keyboardType="email-address" 11 value={value} 12 /> 13...