Static Modal
info
To preview app with this example, clone github repo and run yarn example ios or yarn example android.
Usage​
If you need emoji picker to be not expandable (without knob), nothing easier. Use expandable props and set it to false. Thats all.
import EmojiPicker from 'rn-emoji-keyboard'
const ExampleComponent = () => {
  // ...
  return (
    <EmojiPicker
      open={isOpen}
      onClose={handleOnClose}
      onEmojiSelected={handleOnEmojiSelected}
      //  add props below
      expandable={false}
    />
  )
}
