Skip to content

Instantly share code, notes, and snippets.

@dilrajsingh1997
Last active May 31, 2022 10:24
Show Gist options
  • Save dilrajsingh1997/539c37f046a442358e46cfa3cf701c49 to your computer and use it in GitHub Desktop.
Save dilrajsingh1997/539c37f046a442358e46cfa3cf701c49 to your computer and use it in GitHub Desktop.
Canvas(modifier = modifier,
onDraw = {
for (item in itemsToAnimate) {
translate(top = item.y, left = item.x) {
drawContext.canvas.nativeCanvas.apply {
drawPath(
path = getObjectPath(),
color = Color.Red
)
}
}
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment