Open
Description
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>
Metadata
Assignees
Labels
No labels
Activity