Skip to content

Instantly share code, notes, and snippets.

@mukeshsolanki
Created May 27, 2022 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mukeshsolanki/ab6c06ff1091487f33db3f79db51b916 to your computer and use it in GitHub Desktop.
Save mukeshsolanki/ab6c06ff1091487f33db3f79db51b916 to your computer and use it in GitHub Desktop.
state.snake.forEach {
Box(modifier = Modifier
.offset(x = tileSize * it.first, y = tileSize * it.second)
.size(tileSize)
.background(DarkGreen, RoundedCornerShape(corner4dp)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment