我无法在渲染器上显示动画的值并返回此错误。
不变性违规:对象作为 React 子对象无效(发现:带有键 {value} 的对象)。如果您打算渲染一组子项,请改用数组。
当然,我看到了value console
constructor(props) {
super(props);
this.state={
progress:0
}
this.animatedValue = new Animated.Value(0);
this.animatedValue.addListener((progress) => {
this.setState({progress})
});
}
componentDidMount() {
this.animate()
}
animate() {
this.animatedValue.setValue(0);
Animated.timing(
this.animatedValue,
{
toValue: 1,
duration: 15000,
easing: Easing.linear
}
).start()
}
render() {
return(
<View>
<Text> {this.state.progress} </Text>
</View>
);
}