Relative Content

Tag Archive for androidandroid-jetpack-composeandroid-animation

How to Synchronize Animations of Multiple Rows in Jetpack Compose?

I’m working on a Jetpack Compose application where I have multiple rows of components that I want to animate simultaneously. The animation in the first row(scale) is different from the second row(CrossFade). I have achieved the concept, but the timing of both animations is different.
Currently, the second animation starts only after the first animation ends. I need both animations to happen simultaneously, and after animation ends be visible for 2 seconds, and then repeat.