Skip to content

Instantly share code, notes, and snippets.

@Syex
Created July 10, 2023 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Syex/498f53c9cf3c68832fb5b79a61a1c8bb to your computer and use it in GitHub Desktop.
Save Syex/498f53c9cf3c68832fb5b79a61a1c8bb to your computer and use it in GitHub Desktop.
@Composable
fun Greeting(name: String?) {
AnimatedVisibility(
visible = name != null,
exit = fadeOut(animationSpec = tween(durationMillis = 3_000))
) {
Text(text = "Hello $name")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment