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

Some emojis using unqualified unicode sequence instead of the fully qualified one #173

Closed emesterhazy closed 6 months ago

emesterhazy commented 7 months ago

Some of the unicode emoji literals defined in the default emoji set are using their unqualified unicode representation instead of the fully qualified representation. This may be partially responsible for the rendering issues on some platforms, as reported in https://github.com/Fintasys/emoji_picker_flutter/issues/163. These can be replaced with the fully qualified versions.

I don't have a complete list of the affected emojis, but I know that at least these two are problematic:

Unicode provides a complete list of emojis including the unqualified and qualified variants. We could cross check this against the default set and replace any unqualified emojis with their qualified version.

Fintasys commented 6 months ago

I think we can close this issue since all unqualified emojis has been replaced with the PR. Thank you again 🙏