react native elements input phone number max characters

Solutions on MaxInterview for react native elements input phone number max characters by the best coders in the world

showing results for - "react native elements input phone number max characters"
Leonardo
14 May 2016
1<TextInput value={this.state.text} maxLength={4} />
2
Bautista
17 Apr 2018
1<TextInput
2  style={{height: 40, borderColor: 'gray', borderWidth: 1}}
3  onChangeText={(text) => this.setState({text})}
4  value={this.state.text}
5  maxLength = {8}
6/>
similar questions