Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created January 22, 2025 03:28
Show Gist options
  • Save skydoves/846e68ce2f2eae9d672405cff78ee097 to your computer and use it in GitHub Desktop.
Save skydoves/846e68ce2f2eae9d672405cff78ee097 to your computer and use it in GitHub Desktop.
single_modifier
@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