What’s the Canvas function to draw such path?
# compose
m
What’s the Canvas function to draw such path?
a
You can create a
Path
containing bezier curves using
cubicTo()
,
quadraticBezierTo()
, etc, and then use
DrawScope.drawPath()
.
m
Thanks, I will try it