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

Progress label not working as expected

Open mirko-console-dir opened this issue 4 months ago • 0 comments

Describe the bug The progress label doesn't show the correct number due for the Math.floor I suggest to use Math.ceil instead index.js line 36 return setLabelValue(Math.floor((value / 100) * max));

To Reproduce let totActivity: any = 0 for(let i = 0, len = activity[keyName].length; i < len; i++){ totActivity += activity[keyName][i].total } console.log('totActivity ', totActivity) // log: totActivity 2

       <AnimatedProgressWheel 
            ...
            progress={totalActivity}
           />

Expected behavior the totalActivity is 2 but in the wheel label is showing just 1 due to the Math.floor previously mentioned I suppose, when change to Math.ceil all works fine

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context Add any other context about the problem here.

mirko-console-dir avatar Nov 03 '24 09:11 mirko-console-dir