react-native-progress
react-native-progress copied to clipboard
Android App keep stoping using Progress.Circle
App Keep stoping when i dont put size of size is >= 40
<Progress.Circle progress={0.5} showsText={true} animated={false} />
when i put 30 that is ok
<Progress.Circle size={30} progress={0.5} showsText={true} animated={false} />
just android issues, ios is ok
+1
Had the same issue, works fine on iOS with size 90 but breaks on Android, this fixed the problem, for me the limit is 50 +1