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
The indicator is only fully filled when the value is 100 but the issue it it showing fully filed when the value greater then 96 ( e.g 98 , 99 )
Steps to reproduce
=> render the circular progress component with the value is greater then 96 ( e.g 98 , 99 ) => use the strokeDashedConfig as shown in the code snippet
<CircularProgress value={98} radius={moderateScale(30)} inActiveStrokeOpacity={0.5} activeStrokeWidth={moderateScale(8)} inActiveStrokeWidth={moderateScale(10)} progressValueStyle={{fontFamily: Fonts.Roboto.Medium, color: 'white'}} // activeStrokeSecondaryColor="yellow" inActiveStrokeColor="black" duration={2000} valueSuffix={'%'} dashedStrokeConfig={{ count: 50, width: 1, }} strokeColorConfig={[ {color: 'red', value: 0}, {color: 'yellow', value: 50}, {color: 'green', value: 100}, ]} />
=> using the higher count in dashedStrokeConfig config like 100 the dash become to close and feel like it losing the dashed Appearance
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The indicator is only fully filled when the value is 100 but the issue it it showing fully filed when the value greater then 96 ( e.g 98 , 99 )
Steps to reproduce
=> render the circular progress component with the value is greater then 96 ( e.g 98 , 99 )
=> use the strokeDashedConfig as shown in the code snippet
<CircularProgress
value={98}
radius={moderateScale(30)}
inActiveStrokeOpacity={0.5}
activeStrokeWidth={moderateScale(8)}
inActiveStrokeWidth={moderateScale(10)}
progressValueStyle={{fontFamily: Fonts.Roboto.Medium, color: 'white'}}
// activeStrokeSecondaryColor="yellow"
inActiveStrokeColor="black"
duration={2000}
valueSuffix={'%'}
dashedStrokeConfig={{
count: 50,
width: 1,
}}
strokeColorConfig={[
{color: 'red', value: 0},
{color: 'yellow', value: 50},
{color: 'green', value: 100},
]}
/>
The text was updated successfully, but these errors were encountered: