This package provides a PolygonPainterStateless
class that allows you to draw polygons with a customizable number of corners, start angle, stroke width, color, radius, painting style, and stroke join.
To use this package, add polygon_painter
as a dependency in your pubspec.yaml
file.
Here is a basic example of how to use the PolygonPainterStateless
class:
SizedBox(
height: 300,
width: 300,
child: CustomPaint(
painter: PolygonPainter(
controller: controller, // PolygonPainterController
),
),
),
For more information, check out the documentation