Skip to content

Instantly share code, notes, and snippets.

@pablobaldez
Last active March 12, 2021 18:21
Show Gist options
  • Save pablobaldez/f941da5ea84b54efb997ce4961b45863 to your computer and use it in GitHub Desktop.
Save pablobaldez/f941da5ea84b54efb997ce4961b45863 to your computer and use it in GitHub Desktop.
an example of button usage
/**
* A simple button example
*/
@Composable
fun ButtonExample() {
Button(onClick = { /* Do something! */ }) {
Text("Button")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment