Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Created July 28, 2021 07:43
Show Gist options
  • Save zsoltk/05560c07c30e2e53bd5d43c68bf7834e to your computer and use it in GitHub Desktop.
Save zsoltk/05560c07c30e2e53bd5d43c68bf7834e to your computer and use it in GitHub Desktop.
@Composable
private fun CircleDecoratedSquare(
modifier: Modifier
) {
Canvas(modifier) {
drawCircle(
color = Color.DarkGray,
radius = size.minDimension / 3f, // 6f for a smaller one
alpha = 0.25f,
style = Stroke(width = size.minDimension / 12f) // or Fill
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment