Fintasys / emoji_picker_flutter

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

Support for a search function #83

Closed aminedakhlii closed 2 years ago

aminedakhlii commented 2 years ago

It would be appreciated if a search function (like the one supported in the native emoji picker of iOS) would be implemented and embedded into the package. Example scenario : instead of spending time searching for the 😢 emoji It would be better if users could just type sad into a the search box and the related emojis automatically appear

Fintasys commented 2 years ago

@aminedakhlii It should be possible to achieve it by using final filterEmojiEntities = await EmojiPickerUtils().searchEmoji("face"); (see readme) I will try to update the example soon with some sample implementation.

Fintasys commented 2 years ago

@aminedakhlii You can find search example now here https://github.com/Fintasys/emoji_picker_flutter/blob/master/example/lib/main-search.dart