Alperb
Alperb

Reputation: 25

How to select keyboard's type for IOS with react native

For example: in login page, when I try to read mail adress or any information, defult keyboard type opened. But I need to mail keyboard type for preessing easily to "@"

how to get I configure keyboard types? Is it optional?

Upvotes: 0

Views: 1032

Answers (1)

Tim
Tim

Reputation: 10709

You can specifiy the keyboard via the keyboardType prop of TextInput:

<TextInput
keyboardType='email-address'
//other props

/>

Read more here react-native-docs

Upvotes: 1

Related Questions