Loading mobile/src/hooks/useAnimatedSelectedIndex.ts +2 −0 Original line number Diff line number Diff line Loading @@ -9,6 +9,8 @@ export const useAnimatedSelectedIndex = (startMilliseconds: number = 500, endMil const onIndexChange = useCallback((index: number) => { if (index !== selectedState.current) { setTimeout(() => {}, 100); if (index == selectedState.current) return; console.log("Index changed to: ", index); selectedState.current = index; Animated.timing(backgroundImageAnimation, { Loading Loading
mobile/src/hooks/useAnimatedSelectedIndex.ts +2 −0 Original line number Diff line number Diff line Loading @@ -9,6 +9,8 @@ export const useAnimatedSelectedIndex = (startMilliseconds: number = 500, endMil const onIndexChange = useCallback((index: number) => { if (index !== selectedState.current) { setTimeout(() => {}, 100); if (index == selectedState.current) return; console.log("Index changed to: ", index); selectedState.current = index; Animated.timing(backgroundImageAnimation, { Loading