-
-
Save skydoves/380770ace9f0b0ab7a761eb9d612b6e3 to your computer and use it in GitHub Desktop.
reused_modifiers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Composable | |
fun MyButtons( | |
modifier: Modifier = Modifier, | |
onClick: () -> Unit, | |
) { | |
Column(modifier = modifier) { | |
Button( | |
modifier = modifier, | |
onClick = onClick | |
) { | |
Text( | |
modifier = modifier.padding(10.dp), | |
text = "Rounded" | |
) | |
} | |
Button( | |
modifier = modifier, | |
onClick = onClick | |
) { | |
Text( | |
modifier = modifier.padding(10.dp), | |
text = "Not Rounded" | |
) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment