Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Native textInput max length

Tags:

react-native

How do you set such attribute? For example the CCV field of credit card should have a max length of 3. Expiry date should have a max length of 2 for month and 4 for years.

like image 709
puppymaster Avatar asked Apr 10 '15 05:04

puppymaster


People also ask

How do I limit characters in TextInput React Native?

To set max length of the TextInput with React Native, we can set the maxLength prop. to set the maxLength prop to 10 to allow users to enter a max of 10 characters into the input.

How do you Unfocus TextInput React Native?

To unfocus a TextInput in React Native, we can use the Keyboard. dismiss method. to set the onSubmitEditing prop to Keyboard. dismiss .

How do I input text in large React Native?

To grow height of TextInput upon text wrapping with React Native, we can set the height of the TextInput to the content's height when the content size changes. to set the onContentSizeChange prop to a function that calls setHeight with event. nativeEvent. contentSize.


1 Answers

The maxLength prop is now part of React Native:

<TextInput value={this.state.text} maxLength={4} /> 
like image 162
Dan Leveille Avatar answered Sep 23 '22 21:09

Dan Leveille