我一再重复这个错误。正因为如此,我的应用程序正在以实时模式关闭。我的页面中有 5 到 6 个 FlatLists 和 2 到 3 个 FlatListSlider,我收到此错误。我不知道该怎么办请帮忙。我在我的代码中应用此代码。但它不工作。请帮忙
const navigationRef = useRef(null);
const myRef = useRef(null);
const currentIndex = useRef(0);
useEffect(() => {
const timer = setInterval(() => {
currentIndex.current =
currentIndex.current === FlatList1.length && FlatLis2.length && FltalIst3.length && ... so on .. FlatList7.length - 1
? 0
: currentIndex.current + 1;
myRef?.current?.scrollToIndex({
animated: true,
index: currentIndex.current,
});
}, 5000);
return () => clearInterval(timer);
}, []);