Skip to content

Instantly share code, notes, and snippets.

@zurche
Created June 21, 2023 20:19
Show Gist options
  • Save zurche/6cf19cacaf507529c37c208ea1e6f8c6 to your computer and use it in GitHub Desktop.
Save zurche/6cf19cacaf507529c37c208ea1e6f8c6 to your computer and use it in GitHub Desktop.
Adding trigger
var visible by remember { mutableStateOf(false) }
LaunchedEffect(Unit) {
delay(300)
visible = true
}
AnimatedVisibility(
visible = visible,
) {
CryptoCardContent(data, textColor)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment