[Request] set speed/rate of animation?
Would this be worth making a PR for?
<Progress.Circle animated={true} speed={nn} />
It's using spring animations that doesn't really have a duration config, but others such as friction etc. Could be worth exposing them. What are you aiming to achieve btw?
@oblador: was going to get the growth of the circle's progress to be slower. It's a little too fast for a particular case right now.
Anything on this?
Is there a timeline for this particular feature. I'm looking to animate the circle and bars slower on load.
+1
This can be done with the animationConfig prop in the bar, using the duration attribute.
<Bar
{...}
animationConfig={{duration: 30000}}
/>
@JulianKingman not working
@heyman333
it is working for Progress "Bar" type as mentioned by @JulianKingman e.g to make speed maximum, set duration to 0 as below.
<Progress.Bar animationConfig={{ duration: 0 }} animationType={'timing'} ... />
@ferenax works for bars
just use indeterminateAnimationDuration