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로 주면 해결...