【发布时间】:2019-06-14 09:24:22
【问题描述】:
我已经尝试了keyboardType 的所有类型,它会在iPad 上显示数字和其他字符。
我尝试的keyboardType包括'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)'
/>
有什么方法可以实现它只显示数字键盘吗?
提前致谢。
【问题讨论】:
标签: react-native