Skip to content

Instantly share code, notes, and snippets.

@skydoves
Last active August 12, 2022 01:17
Show Gist options
  • Save skydoves/2cef1ca433ba9d53bce2accf1f6a0cd0 to your computer and use it in GitHub Desktop.
Save skydoves/2cef1ca433ba9d53bce2accf1f6a0cd0 to your computer and use it in GitHub Desktop.
custom_button
@Composable
fun CustomButton(text: String, onClick: () -> Unit) {
Button(onClick = onClick) {
Text(text = text)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment