eygraber
02/22/2021, 7:38 PMDoris Liu
02/22/2021, 7:51 PMAnimatedVisibility
finishes animating out its content, the content will be disposed. For now you could add a DisposableEffect
in the content like so:
DisposableEffect(Unit) {
onDispose {
// Remove the item
}
}
Kort
02/24/2021, 7:44 AM