admin管理员组文章数量:1344975
I can not display the Value of Animated on the Render and returns this error.
Invariant Violation: Objects are not valid as a React child (found: object with keys {value}). If you meant to render a collection of children, use an array instead.
Of course, I see the Value in the console
constructor(props) {
super(props);
this.state={
progress:0
}
this.animatedValue = new Animated.Value(0);
this.animatedValue.addListener((progress) => {
this.setState({progress})
});
}
ponentDidMount() {
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>
);
}
I can not display the Value of Animated on the Render and returns this error.
Invariant Violation: Objects are not valid as a React child (found: object with keys {value}). If you meant to render a collection of children, use an array instead.
Of course, I see the Value in the console
constructor(props) {
super(props);
this.state={
progress:0
}
this.animatedValue = new Animated.Value(0);
this.animatedValue.addListener((progress) => {
this.setState({progress})
});
}
ponentDidMount() {
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>
);
}
Share
Improve this question
edited Jul 3, 2018 at 18:30
Tholle
113k22 gold badges208 silver badges197 bronze badges
asked Jul 3, 2018 at 18:25
Mahdi BashirpourMahdi Bashirpour
18.9k17 gold badges131 silver badges151 bronze badges
0
2 Answers
Reset to default 9The function given to addListener
will be called with an object with a value
key as argument, so instead of setting progress
with the entire object, use the value
instead:
this.animatedValue.addListener((progress) => {
this.setState({ progress: progress.value });
});
Tholle solution works fine if the animated value doesn't change that much, because it will cause a ponent re-render(as mentioned by @saeedZhiany in his ment) each time the value changes and that can lead to performance issues.
The better solution for these cases is to use ._value
property of animatedValue
, something like this:
<Text>
{Math.round(this.animatedValue._value)}
</Text>
This way you get the real value at anytime without updating the ponent state. Thus avoiding performance issues.
本文标签: javascriptDisplay Animated Value in React Native Render Text ComponentStack Overflow
版权声明:本文标题:javascript - Display Animated Value in React Native Render Text Component - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743747838a2532090.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论