https://kotlinlang.org logo
Title
u

user

07/19/2022, 5:01 PM
Multiple Animations are Not Launching At the Same Time in Jetpack Compose I have 3 animations, but the top one launches first, then the other two, how do I get them all to launch at the same time? I tried putting them in the same coroutine scope but still getting same results. LaunchedEffect(isItemInView) { scope.launch { coroutineScope { launch { // Even without the scope.launch, coroutineScope, launch lines, same effect bar1.animateTo(if (isItemInView) bar1EndLocation else bar1StartLocation)...