Created
January 25, 2020 19:27
-
-
Save zsoltk/ae2ec28c60dc49ec80a2182d54760771 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 | |
fun DrawSample() { | |
val paint = +memo { Paint() } | |
Container(width = 200.dp, height = 200.dp) { | |
Draw { canvas, parentSize -> | |
paint.color = Color.Black | |
canvas.drawRect(parentSize.toRect(), paint) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment