Skip to content

Instantly share code, notes, and snippets.

@zurche
Created June 21, 2023 20:15
Show Gist options
  • Save zurche/5e4f86327f967804e97317c722224c1a to your computer and use it in GitHub Desktop.
Save zurche/5e4f86327f967804e97317c722224c1a to your computer and use it in GitHub Desktop.
Animated Visibility
var visible by remember { mutableStateOf(false) }
AnimatedVisibility(visible = visible) {
CryptoCardContent(data, textColor)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment