Reputation:
I've been hunting the web trying to find out how to get the standard IOS number input fields to be displayed through React Native but am having no luck. I've found libraries like React-Native-Phone-Input however don't want the bulk of another library.
All I need is the ability to display the native number input field, that is if this is even possible?
Upvotes: 9
Views: 25289
Reputation: 1741
Refer the below react native component property
http://facebook.github.io/react-native/docs/textinput#keyboardtype
Use the
<TextInput keyboardType={'phone-pad'} />
Upvotes: 26