Colton Idle
05/15/2022, 8:36 AMAlbert Chang
05/15/2022, 8:51 AMAnimatedVisibility
should work. Just specify a delay according to the index.Colton Idle
05/15/2022, 9:03 AMAlbert Chang
05/15/2022, 9:18 AMAnimatedVisibility
only animates visibility changes so passing true won’t work. However you can use the overload that takes a `MutableTransitionState`:
AnimatedVisibility(
visibleState = remember {
MutableTransitionState(initialState = false).apply { targetState = true }
}
)
Roberto Leinardi
05/15/2022, 10:52 AMColton Idle
05/15/2022, 6:24 PMChris Sinco [G]
05/15/2022, 6:30 PMColton Idle
05/16/2022, 8:20 AMChris Sinco [G]
05/17/2022, 5:49 PManimateEnterExit
which allows you to specify the animation per itemColton Idle
05/18/2022, 7:28 AM