Reputation: 3008
What is the Jetpack Compose alternative to View system's 'animateLayoutChanges'? 'animateLayoutChanges' was a really easy and powerful way to animate layout changes. I am not able to find a similar alternative in Jetpack Compose.
Upvotes: 2
Views: 1537
Reputation: 6863
There's the AnimatedContent()
Composable
https://developer.android.com/jetpack/compose/animation#animatedcontent
Upvotes: 3
Reputation: 1694
You can use modifier Modifier.animateContentSize()
to automatically animate size change
Upvotes: 5