[ Resolved ]
Hi, Iโm facing issue in animating transition in Compose.
Copy code
var mProgress by remember { mutableStateOf(0F) }
val transition = updateTransition(targetState = mProgress, label = "")
Currently, On Button Click, I can easily change mProgress value and view will be animated
But
Iโve donโt want to animate on Button Clicked, rather the view should be animated as soon as it is displayed in screen. Tried a lot of things but no luck ๐
Any suggestion ?