Flipkart / recyclerlistview

High performance listview for React Native and web!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Dani-Boy92 opened this issue · comments

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);
      }