JeffG05/emoji_picker

Scroll Performance extremly slow

Closed this issue · 4 comments

Hey Jeff :),

I recognized a really bad performance in scrolling between pages in your PageView implementation.

It was because of NeverScrollableScrollPhysics. Not the yellow of the egg by flutter.

Just change it to:

physics: AlwaysScrollableScrollPhysics(),

and you should've removed that performance issue.

Greetings
Rebar

Thanks! This issue should now be solved.

Hi this issue still exist, its very slow when scrolling

This issue still exist, its very slow when scrolling

The build method of EmojiPicker is huge, like 1200 lines of code or so. You probably do a lot of unnecessary stuff inside it which is executed on each scroll update.