Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created August 12, 2022 01:18
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 skydoves/847503e96f0066ca6406e36c97b102c2 to your computer and use it in GitHub Desktop.
Save skydoves/847503e96f0066ca6406e36c97b102c2 to your computer and use it in GitHub Desktop.
button_hoist
setContent {
var count by remember {
mutableStateOf(0)
}
CustomButton(text = "Clicked $count times") {
count++
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment