react native 에서 css 애니메이션을 줄 수 있는 View
const fadeNum = React.useRef(new Animated.Value(100)).current;
const FadeAnimation = ({ fadeNum, toValue, duration }: Prams) => {
Animated.timing(fadeNum, {
toValue,
duration,
useNativeDriver: false,
}).start();
};
FadeAnimation({ fadeNum: 300, toValue: 100, duration: 1000 });
fadeNum 의 Animation.Value 에는 숫자만 들어갈 수 있다
-> 퍼센트로 사용하기 위해서는 String 변환 후 + '%'로 사용할 수 있을 것 같다