react native 怎么设置键盘类型
1 回答
慕虎7371278
TA贡献1802条经验 获得超4个赞
1 2 3 | <TextInput keyboardType="numeric" returnKeyType="search"/> |
决定返回键的样式:
1 2 | returnKeyType enum('default', 'go', 'google', 'join', 'next', 'route', 'search', 'send', 'yahoo', 'done', 'emergency-call') |
决定打开哪种键盘,例如,数字键盘:
1 2 3 4 | keyboardType enum('default', "ascii-capable", 'numbers-and-punctuation', 'url', 'number-pad', 'phone-pad', 'name-phone-pad', 'email-address', 'decimal-pad', 'twitter', 'web-search', "numeric") |
- 1 回答
- 0 关注
- 2558 浏览
添加回答
举报
0/150
提交
取消