Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created November 9, 2024 00:24
Show Gist options
  • Save skydoves/f93d15e360e328b10474d4c220d0478f to your computer and use it in GitHub Desktop.
Save skydoves/f93d15e360e328b10474d4c220d0478f to your computer and use it in GitHub Desktop.
counter
@Composable
fun Counter() {
var count by remember { mutableStateOf(0) }
Column {
Text("Count: $count")
Button(onClick = { count++ }) {
Text("Increase")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment