Skip to main content

Basic

info

To preview app with this example, clone github repo and run yarn example ios or yarn example android.

Usage​

Basic usage of the emoji picker is very simple. Just import EmojiPicker, pass required props and its ready to go.

import EmojiPicker from 'rn-emoji-keyboard'

const ExampleComponent = () => {
// ...

return (
<EmojiPicker open={isOpen} onClose={handleOnClose} onEmojiSelected={handleOnEmojiSelected} />
)
}

Preview