I have try all of type with keyboardType
, it will shows number and others characters on iPad
.
What I try the keyboardType includes 'default', 'email-address', 'numeric', 'phone-pad', 'ascii-capable', 'numbers-and-punctuation', 'url', 'number-pad', 'name-phone-pad', 'decimal-pad', 'twitter', 'web-search'
<TextInput
style={styles.textInput}
keyboardType='numeric'
onChangeText={(tex) => this.changeText(tex)}
value={this.state.text}
placeholder={'0912 345 678'}
placeholderTextColor='rgba(33, 33, 33, 0.41)'
/>
Is any way to achieve it just shows numeric keyboard ?
Thanks in advance.