what's the difference between `canvas.drawLine` an...
# compose
k
what's the difference between
canvas.drawLine
and
canvas.drawPath
? when to use one over the other?
a
Use canvas.drawPath when you need to draw a path (may not necessarily be a line, bit could be a curve for example)
👍 1
k
Okay, Thanks!