react-native-progress
react-native-progress copied to clipboard
Progress.Circle showsText: {true} always show 0%
When using
<Progress.Circle size={50} showsText={true} progress={0.3} />
It is always showing 0%.
Unless the progress is going to be changing, try using it like this:
<Progress.Circle animated={false} size={50} showsText={true} progress={0.3} />
The animated={false}
makes it so it renders statically. I had difficulty with this myself.
Is there a fix for this problem?
add animated={false}, works for me
add antimated={false} its works for me. thank you