react-native-emoji-selector
react-native-emoji-selector copied to clipboard
Android - Cannot see the Emojis, only tabs appears.
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.
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>
I've got the same problem. Did you manage to solve it?