-
-
Save skydoves/1cc742a870de98143b89ffe4b7378991 to your computer and use it in GitHub Desktop.
modifier
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 RoundedButton( | |
modifier: Modifier = Modifier, | |
onClick: () -> Unit | |
) { | |
Button( | |
modifier = modifier.clip(RoundedCornerShape(32.dp)), | |
onClick = onClick | |
) { | |
Text( | |
modifier = Modifier.padding(10.dp), | |
text = "Rounded" | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment