Jetpack Compose animated circle
I want to make an animated circle in Jetpack compose to be animated as in the picture.I couldn't do it the way I wanted. The code block is below.
val transition = rememberInfiniteTransition()
val scale = transition.animateFloat(
initialValue = 1.9f,
targetValue = if(isAnimating) 2.05f else 1.9f,
animationSpec = infiniteRepeatable(
animation = tween(durationMillis =...