Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created January 22, 2025 03:25
Show Gist options
  • Save skydoves/6914bc5826a0839145f7d3cd1411a4cf to your computer and use it in GitHub Desktop.
Save skydoves/6914bc5826a0839145f7d3cd1411a4cf to your computer and use it in GitHub Desktop.
modifier
@Composable
fun RoundedButton(
modifier: Modifier = Modifier,
onClick: () -> Unit,
content: @Composable RowScope.() -> Unit
) {
Button(
modifier = modifier.clip(RoundedCornerShape(32.dp)),
onClick = onClick
) {
content()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment