Open theartificialguy opened 2 years ago
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.
View
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?
Same problem here
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: