Created
July 28, 2021 07:43
-
-
Save zsoltk/05560c07c30e2e53bd5d43c68bf7834e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| 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