You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When scrolling, instead of updating on every scroll event/animationFrame, you could save a lot of rerenders by only doing it when it actually changes the skipCount. You can even add "chunking" so that it only updates every third row for example.
When scrolling, instead of updating on every scroll event/animationFrame, you could save a lot of rerenders by only doing it when it actually changes the skipCount. You can even add "chunking" so that it only updates every third row for example.
Example from my own virtual-list implementation:
https://gist.github.com/Herteby/ef0a9b4d688a216d9ebdc6968c9a0907
The text was updated successfully, but these errors were encountered: