Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Created July 28, 2021 07:39
Show Gist options
  • Save zsoltk/3d6c7bdf1ab1032a85d3a2eb811ff85e to your computer and use it in GitHub Desktop.
Save zsoltk/3d6c7bdf1ab1032a85d3a2eb811ff85e to your computer and use it in GitHub Desktop.
@Composable
fun Square(isDarkSquare: Boolean) {
Canvas(modifier = Modifier.fillMaxSize(1f)) {
drawRect(color = if (isDarkSquare) darkSquareColor else lightSquareColor)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment