Skip to content

Instantly share code, notes, and snippets.

@alohaabhi
Created March 29, 2023 08:01
Show Gist options
  • Save alohaabhi/1bab40c7899afbcba8ba56be5a263f08 to your computer and use it in GitHub Desktop.
Save alohaabhi/1bab40c7899afbcba8ba56be5a263f08 to your computer and use it in GitHub Desktop.
var count = 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