Fintasys / emoji_picker_flutter

A Flutter package that provides an Emoji picker widget with 1500+ emojis in 8 categories.
MIT License
154 stars 114 forks source link

How to hide specific emoji from emoji set ? #194

Closed fathomkiran closed 3 months ago

fathomkiran commented 3 months ago

I want to hide some emojis from the emoji set, can you please explain how to do it?

Fintasys commented 3 months ago

You create your modified copy of defaultEmojiSet and then you can assign it in Config.emojiSet.

const customEmojiSet = [
  CategoryEmoji(Category.SMILEYS, [
    Emoji('😀', 'Grinning Face'),
  ]),
];

EmojiPicker(
    config: Config(
        emojiSet: customEmojiSet,
    ),
)