1

how can I open emoji keyboard in React Native without using 3rd Party Library ?

<TextInput 
  onChangeText={e => handleChange("message", e)} 
  keyboardType={"default"} 
/>
Kirill Novikov
  • 2,576
  • 4
  • 20
  • 33
  • have you seen this? https://stackoverflow.com/questions/71806158/how-to-open-emoji-keyboard-instead-of-alphabets-using-textinput-in-react-native – Waheed Akhtar Jan 02 '23 at 12:20

1 Answers1

0

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

Kirill Novikov
  • 2,576
  • 4
  • 20
  • 33