Skip to content

Instantly share code, notes, and snippets.

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