We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using
<Progress.Circle size={50} showsText={true} progress={0.3} />
It is always showing 0%.
The text was updated successfully, but these errors were encountered:
Unless the progress is going to be changing, try using it like this: <Progress.Circle animated={false} size={50} showsText={true} progress={0.3} />
<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.
animated={false}
Sorry, something went wrong.
Is there a fix for this problem?
add animated={false}, works for me
add antimated={false} its works for me. thank you
No branches or pull requests
When using
<Progress.Circle size={50} showsText={true} progress={0.3} />
It is always showing 0%.
The text was updated successfully, but these errors were encountered: