Skip to content

Instantly share code, notes, and snippets.

@alohaabhi
Created March 29, 2023 08:16
Show Gist options
  • Save alohaabhi/e803e4ae6dd72a8a091af65e56b7d391 to your computer and use it in GitHub Desktop.
Save alohaabhi/e803e4ae6dd72a8a091af65e56b7d391 to your computer and use it in GitHub Desktop.
var count by remember { mutableStateOf(1) }
Text(text = "The count is $count.")
Button(onClick = {
count = count.inc()
}) {
Text(text = "Hit")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment