user2010338
user2010338

Reputation:

React Native Phone Number Input

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?

IOS Text Input

Upvotes: 9

Views: 25289

Answers (1)

Arunkumar
Arunkumar

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

Related Questions