Skip to content

Instantly share code, notes, and snippets.

@Peddro
Created January 26, 2022 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Peddro/8395a071e97ecc4a3bd1583a6941d1a7 to your computer and use it in GitHub Desktop.
Save Peddro/8395a071e97ecc4a3bd1583a6941d1a7 to your computer and use it in GitHub Desktop.
@Composable
fun H19Surface(
modifier: Modifier = Modifier,
shape: Shape = RectangleShape,
content: @Composable () -> Unit
) {
Surface(
modifier = modifier,
shape = shape,
content = content
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment