recyclerlistview
recyclerlistview copied to clipboard
How do we know when ScrollToOffset / ScrollToIndex is finished?
ScrollToOffset or ScrollToIndex are async functions as far as I can figure out. Is there any way to determine when the scrolling is finished?
const handleTabClick = async (listRef) => {
// await is not working. the only way that is see a manual time out
await listRef.current.scrollToOffset(0, 0, false);
setPage(1);
setSelectedTab(Types.STORY);
};
I think that you're looking for handleOnMomentumEnd