text input limit letter react native code example
Example: react native elements input phone number max characters
<TextInput
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(text) => this.setState({text})}
value={this.state.text}
maxLength = {8}
/>