初学react native,想实现一个相机扫描功能时,报错,报错描述如标题
这是我的主要逻辑代码
const fadeAnim = useRef(new Animated.Value(0)).current;
const move = () => {
fadeAnim.setValue(0);
Animated.timing(fadeAnim, {
toValue: 200,
duration: 2000,
easing: Easing.linear ,
useNativeDriver: true,
}).start(() => {
move();
});
};
useEffect(() => {
move();
}, []);
这是使用动画的代码
<View
style={[
styles.line,
{
transform: [
{
translateY: fadeAnim,
},
],
},
]}></View>