Skip to content

Instantly share code, notes, and snippets.

@GRizzi91
Created October 13, 2021 16:40
Show Gist options
  • Save GRizzi91/ea131a856e7259e17558b6e8eb8b9b5b to your computer and use it in GitHub Desktop.
Save GRizzi91/ea131a856e7259e17558b6e8eb8b9b5b to your computer and use it in GitHub Desktop.
@Preview
@Composable
fun DrawSquare() {
Canvas(modifier = Modifier.size(200.dp)) {
drawRect(
color = Color.Red,
size = size
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment