Closed
Description
I was curious if you had considered any performance optimizations around the need for a full tree walk. I think one of the great parts of the iterator
model is that you have the ability to progressively walk the tree as the user scrolls.
Couple this with the consistent height of elements, and it's possible to calculate what element you need to start iterating from to service any request.
Curious if performance optimizations like those were ever intended to be a part of react-vtree
or if that's not the problem you're trying to solve.