Flipkart / recyclerlistview

High performance listview for React Native and web!
Apache License 2.0
5.17k stars 420 forks source link

scrollTo was called before RecyclerListView was measured, please wait for the mount to finish #740

Open Dani-Boy92 opened 1 year ago

Dani-Boy92 commented 1 year ago

I run in the following error with RecylerListView.

scrollTo was called before RecyclerListView was measured, please wait for the mount to finish

How can I make sure that the scrollTo function is not called until RecylerListView has finished measuring?

The following approach is not working...

if (recyclerRef?.current ) {
        recyclerRef.current?.scrollToIndex(index, true);
      }
giantslogik commented 1 month ago

see #746