error: RN | Error when use useNativeDriver in React Native Animated (ReactNative 애니메이션)- 220921

Lumpen·2022년 9월 22일
0

Error

목록 보기
5/41

Animated

react-native에서 빌트인으로 제공하는 animation 라이브러리

공식문서

const fadeAnim = useRef(new Animated.Value(0)).current  // Initial value for opacity: 0

  useEffect(() => {
    Animated.timing(
      fadeAnim,
      {
        toValue: 1,
        duration: 10000,
      }
    ).start();
  }, [fadeAnim])

버전이 안맞는지 에러가 뜬다

const fadeAnim = useRef(new Animated.Value(0)).current  // Initial value for opacity: 0

  useEffect(() => {
    Animated.timing(
      fadeAnim,
      {
        toValue: 1,
        duration: 10000,
        useNativeDriver: true,  // <----- this line
      }
    ).start();
  }, [fadeAnim])

useNativeDriver를 true로 주면 해결...

profile
떠돌이 생활을 하는. 실업자는 아니지만, 부랑 생활을 하는

0개의 댓글