最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Display Animated Value in React Native Render Text Component - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 9

The 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.

发布评论

评论列表(0)

  1. 暂无评论