Tag: Drawing

  • Drawing in Flutter

    In Flutter, you can use the CustomPaint and CustomPainter classes to draw to the canvas. CustomPainter subclasses must implement the paint() and shouldRepaint() methods. It’s should be passes to CustomPaint’s as a painter parameter.