AnimatedVisibility
Animate the appearance and disappearance of content.
Basic Usage
Section titled “Basic Usage”var toggle: Boolean by remember { mutableStateOf(false) }
Column { Button(onClick = { toggle = !toggle }) { Text("Click to Show & Hide") } AnimatedVisibility(toggle) { Box( Modifier .background(Color.Red) .size(100.dp) ) }}