Skip to content

Instantly share code, notes, and snippets.

@Syex
Created July 10, 2023 15:30
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/80fb0f54504dde55be21002dd24c19c8 to your computer and use it in GitHub Desktop.
Save Syex/80fb0f54504dde55be21002dd24c19c8 to your computer and use it in GitHub Desktop.
@Composable
fun Greeting(name: String?) {
AnimatedVisibility(
visible = name != null,
) {
Text(text = name!!)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment