In order to capitalize words in input field in React Native, we need to use autoCapitalize
prop of <TextInput>
component.
There are various possible values of autoCapitalize
–
-
characters
– To capitalize all characters. -
words
– First character of each word will be capitalized. -
sentences
– Each sentence will start with capital letter. -
none
– No auto capitalization.
Code Example
import React from "react"; import { SafeAreaView, StyleSheet, TextInput, Text, View } from "react-native"; const SimpleTextInput = () => { const [text1, onChangeText1] = React.useState(""); const [text2, onChangeText2] = React.useState(""); const [text3, onChangeText3] = React.useState(""); const [text4, onChangeText4] = React.useState(""); return ( <SafeAreaView> <View style={styles.container}> <TextInput style={styles.input} onChangeText={onChangeText1} value={text1} autoCapitalize={'none'} /> <TextInput style={styles.input} onChangeText={onChangeText2} value={text2} autoCapitalize={'sentences'} /> <TextInput style={styles.input} onChangeText={onChangeText3} value={text3} autoCapitalize={'words'} /> <TextInput style={styles.input} onChangeText={onChangeText4} value={text4} autoCapitalize={'characters'} /> </View> </SafeAreaView> ); }; const styles = StyleSheet.create({ container: { marginTop: 40, }, input: { height: 40, margin: 12, borderWidth: 1, padding: 10, }, }); export default SimpleTextInput;
Output –
In the above image we are displaying 4 sets of mobile phones and 4 input fields in each phone. The first phone is entering data in first input field, second in second field and so on.
The interesting thing is that the keyboard is showing all small characters in first phone as we clicked on input field. This shows that it won’t auto capitalize any character. This is because we are setting autoCapitalize=none
for first TextInput
in our code at line 17.
For second phone the keyboard is showing capital letters. But in the input field we have word Sentence. It means S was capital and then everything small but after the period, keyboard started showing capital letters again. It means only the first character of sentence will be capital. This is because of code autoCapitalize=sentences
in line 24.
In third frame, the capital keyboard is showing after a word. So it is capitalizing first character of each word. Due to autoCapitalize=words
in third input field at line 31.
And the fourth frame is showing capital keyboard for all characters. We are setting autoCapitalize=characters
for fourth input field at line 38.
Live Demo
Conclusion
Depending on your use case, you can adopt different strategies to auto capitalize the text entered by users in input field. React native provides autoCapitalize
prop for TextInput
component to help you design this functionality.
Read These Next ⬇️
How to Create Simple Input Field?
How to Open Numeric Keyboard?
How to Open Email Id Keyboard?
How to Open Phone number Keyboard?
How to Open Url Keyboard?
How to Create Password Input Field?
How to Auto Capitalize Text in Input Field?
How to Create Multiline Input Field?
How to Hide Cursor in Input Field?
How to Clear input Field using X Button?
How to Clear input Field when focused?
How to Change Cursor Color in Input Field?
How to Disable input field?
How to add Icon at the left of Input Field?
How to Change Dark-Light Theme of Keyboard?
How to Avoid Overlapping of Keyboard?
How to Limit Characters in Input Field?
How to Add Placeholder in input field?
How to Change Placeholder Color in Input Field?
How to Programmatically select text in Input Field?
How to Change Text Selection Color in Input Field?
How to Select Whole text in Input Field on Focus?
How to Write text from center in input field?
How to Change underline color of input field?
React Native Series
Alert
- Basic Alert
- Dismiss on Clicking Outside
- Input Fields in Alert Dialog – Prompt()
- Dark-Light Theme of Dialog
ActivityIndicator
- Basic Circular Loader
- Change size of Circular Loader
- Show/hide Circular Loader
- Change color of Circular Loader
Button
FlatList
- Simple List
- Single Item Selection from List
- Multiple Item Selection from List
- Adding separator between list items
- Multiple columns List
- Showing Message in Empty List
- Add Footer to the List
- Add Header to the List
- Horizontal List
- Inverted List
- Pull to Refresh in List
- Infinite Loading List
SectionList
ScrollView
- ScrollView
- Stick Single Item at Header
- Stick Multiple Items at Header
- Stick Item at Footer
- Hide Sticky Element on Scroll
Image
- Display Image from remote url
- Display local storage image
- Display Base64 Image
- Display Gif & Webp Images
- Adding Blur to Image
- Displaying loader for Image
- Resizemode for Images
- Setting Default Placeholder Image
- Background Image
Modal
RefreshControl
- RefreshControl
- Change Refresh Loader Color
- Change Refresh Loader Size
- Change Refresh Loader Background Color
- Title under Refresh Loader
- Change color of title under refresh loader
StatusBar
- Get StatusBar Size
- Change StatusBar Background Color
- Display StatusBar icons & text in While Color
- Display StatusBar icons & text in Dark Color
- Hiding StatusBar
- Translucent StatusBar
Switch
Text
- Adding Text
- Bold Text
- Italic Text
- Underline Text
- Selecting Text for copy-paste
- Changing Highlight Color of Text Selection
- Fit text in View box
- Clickable anchors in text
- Truncate Lengthy Text
TextInput
- Simple Input Field
- Auto Capitalize Text in Input Field
- Multiline Input Field
- Hide Cursor in Input Field
- Clear input Field using X
- Clear input Field when focused
- Change Cursor Color in Input Field
- Disable input field
- Icon at the left of Input Field
- Dark-Light Keyboard
- Avoid Overlapping of Keyboard
- Limiting Characters in Input Field
- Numeric Keyboard
- Email Id Keyboard
- Phone number Keyboard
- Url Keyboard
- Placeholder in input field
- Placeholder Color in Input Field
- Password Input Field
- Programmatically select text in Input Field
- Change Text Selection Color in Input Field
- Select Whole text in Input Field on Focus
- Write text from center in input field
- Changing underline color of input field
TouchableWithoutFeedback
TouchableHighlight
TouchableOpacity
Pressable
Appearance
AppState
ToastAndroid
Dimensions
Keyboard