|
|
|
|
|
by nickzelei
498 days ago
|
|
Hm, this is cool but I’m not seeing the speed. I loaded this on my phone and did one scroll flick with my thumb. Immediately saw white screen and took multiple seconds to render the items.
iOS iPhone 15 pro.
I’ve run into this same problem before using tanstack virtual table and it’s usually do to a few things: - Too much on band calculation blocking the renderer when the new items come into view. - Not enough preloading of the items off screen - Incorrectly calculating the virtual scroll height which causes inefficient re drawing during render. Not sure what stack you’re running but it seems the table could use some optimization. |
|