allan.conda
10/28/2020, 11:38 AMDoris Liu
10/29/2020, 12:54 AMslideInVertically
shouldn't clip, but its parent may choose to clip it. Which composable are you seeing the clipping in?allan.conda
10/29/2020, 12:54 AMDoris Liu
10/29/2020, 12:58 AMallan.conda
10/29/2020, 1:21 AMDoris Liu
10/29/2020, 1:25 AMinitiallyVisible
param to true, to prevent animations from firing.allan.conda
10/29/2020, 1:59 PMDoris Liu
10/29/2020, 7:50 PMval items = remember { colors.map {
Pair(it, mutableStateOf(false) /*initiallyVisible*/) } }
LazyColumnFor(
items
) {
AnimatedVisibility(true, initiallyVisible = it.second.value) {
onDispose {
it.second.value = true
}
// Children here
}
}
allan.conda
10/30/2020, 9:38 AM