Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created September 28, 2024 05:33
Show Gist options
  • Save skydoves/a34f6b117396d314f8d2888f0e55035e to your computer and use it in GitHub Desktop.
Save skydoves/a34f6b117396d314f8d2888f0e55035e to your computer and use it in GitHub Desktop.
declarative
@Composable
fun Main() {
var count by remember { mutableStateOf(0) }
CounterButton(count) {
count++
}
}
@Composable
fun CounterButton(count: Int, onClick: () -> Unit) {
Button(onClick = onClick) {
Text("Clicked: $count")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment