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