If you were to do instagram stories ui (the progre...
# compose
u
If you were to do instagram stories ui (the progressbar), how would you drive the progress? ValueAnimator? Coroutines, flow?
d
Animatable
(i.e. coroutine-based animation) would be my choice of API, as it offers imperative control on the animation (e.g. skip to the end, start triggered by user gestures, etc)
1