Hello,
I have an issue where the text inside the circle is always at 0 if I don't setanimated={false}. After looking at the code, it seems like this code is responsible :
componentWillMount() {
if (this.props.animated) {
this.props.progress.addListener((event) => {
this.progressValue = event.value;
if (this.props.showsText || this.progressValue === 1) {
this.forceUpdate();
}
});
}
}
It's never entering the listener (I put some logs), so the progressValue is always 0.
Thanks.
Hello,
I have an issue where the text inside the circle is always at 0 if I don't set
animated={false}. After looking at the code, it seems like this code is responsible :It's never entering the listener (I put some logs), so the
progressValueis always 0.Thanks.