react-native-emoji-selector icon indicating copy to clipboard operation
react-native-emoji-selector copied to clipboard

Android - Cannot see the Emojis, only tabs appears.

Open theartificialguy opened this issue 3 years ago • 2 comments

Current version installed in my project: "react-native-emoji-selector": "^0.2.0"

I have tried to apply styles but nothing changed, wrapped around a View nothing changed.

so (2)

Code:

const [input, setInput] = useState(null);
const [emojiPicker, setEmojiPicker] = useState(false);

<KeyboardAvoidingView
  style={emojiPicker ? {height: '60%'} : {flex: 1}}
  behavior={Platform.select({android: undefined, ios: 'padding'})}
  keyboardVerticalOffset={90}
>
  {emojiPicker && (
    <EmojiSelector
      onEmojiSelected={emoji =>
        setInput(currentInput => currentInput + emoji)
      }
      columns={8}
      showSearchBar
      showTabs
      showHistory
      showSectionTitles
    />
  )}
</KeyboardAvoidingView>

theartificialguy avatar Jan 12 '22 20:01 theartificialguy

I've got the same problem. Did you manage to solve it?

weronikazak avatar Aug 06 '23 11:08 weronikazak