Skip to content

Instantly share code, notes, and snippets.

@V-Abhilash-1999
Created May 23, 2023 12:21
Show Gist options
  • Save V-Abhilash-1999/ca75142ce2b9ac7a890fd09387ef0efc to your computer and use it in GitHub Desktop.
Save V-Abhilash-1999/ca75142ce2b9ac7a890fd09387ef0efc to your computer and use it in GitHub Desktop.
val linePaint = Paint()
linePaint.strokeWidth = 0F
for (i in hueColors.indices) {
linePaint.color = hueColors[i]
hueCanvas.drawLine(i.toFloat(), 0F, i.toFloat(), huePanel.bottom, linePaint)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment