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

[BugFix] Avoid multiple rebuilds of emojis categories #25

Closed Fintasys closed 3 years ago

Fintasys commented 3 years ago

Another attempt to fix #12

Theory is that build is called at least twice before loaded is set to true.
This could lead to the situation that both futures have cleared the list and start adding items to the list in parallel. Extracting _updateEmoji to variable will avoid that the Future will be created multiple times and should fix the issue.