Open Bayramito opened 3 months ago
This issue most likely is caused by the type of progress input value. Note the value should not be a number directly:
progress={20}
// instead use
const progressValue = useSharedValue(20);
progress={progressValue}
If your issue is not resolved by this, please produce information to replicate the issue.
yeah, it's best to add your example code so I can take a look.