react-native-progress icon indicating copy to clipboard operation
react-native-progress copied to clipboard

Progress.Circle showsText: {true} always show 0%

Open brystfire08 opened this issue 3 years ago • 4 comments

When using

<Progress.Circle size={50} showsText={true} progress={0.3} />

It is always showing 0%.

brystfire08 avatar Dec 14 '21 03:12 brystfire08

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.

erunks avatar Dec 21 '21 17:12 erunks

Is there a fix for this problem?

sadeghhosseini avatar Jun 28 '22 09:06 sadeghhosseini

add animated={false}, works for me

HieuNguyen414 avatar Oct 07 '22 06:10 HieuNguyen414

add antimated={false} its works for me. thank you

rinaldycodes avatar Jun 12 '23 03:06 rinaldycodes