Skip to content

Instantly share code, notes, and snippets.

@harmittaa
Created March 12, 2025 19:09
Show Gist options
  • Save harmittaa/7d93062fd6d9cfe965b5ea042be8d351 to your computer and use it in GitHub Desktop.
Save harmittaa/7d93062fd6d9cfe965b5ea042be8d351 to your computer and use it in GitHub Desktop.
ButtonPreview
@PreviewLightDark
@Composable
fun ButtonPreview() {
ComposeColorsTheme {
Surface {
Row {
Button(
onClick = {},
enabled = true
) {
Text("Login")
}
Button(
onClick = {},
enabled = false
) {
Text("Cancel")
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment