Skip to main content

Translated

info

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

tip

If you want to add custom translation or want to get more information about translations check internationalization section.

Usage​

To add translation just import specific language slug and add it to translation props.

import EmojiPicker, { pl } from 'rn-emoji-keyboard'

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

return (
<EmojiPicker
open={isOpen}
onClose={handleOnClose}
onEmojiSelected={handleOnEmojiSelected}
// add props below
translation={pl}
/>
)
}

Preview