Reputation: 25
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
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