how can I open emoji keyboard in React Native without using 3rd Party Library ?
<TextInput
onChangeText={e => handleChange("message", e)}
keyboardType={"default"}
/>
how can I open emoji keyboard in React Native without using 3rd Party Library ?
<TextInput
onChangeText={e => handleChange("message", e)}
keyboardType={"default"}
/>
The answer is you can't. React Native based on native applications. This means that you can't do something you can't do in native.
There are 2 answers to this problem on both platforms.
For IOS: Call emoji keyboard programmatically?
For Android Android : How to programmatically open the soft keyboard in Emoji View