paint method

  1. @override
void paint(
  1. Canvas canvas,
  2. Size size
)
override

Called whenever the object needs to paint. The given Canvas has its coordinate space configured such that the origin is at the top left of the box. The area of the box is the size of the size argument.

Paint operations should remain inside the given area. Graphical operations outside the bounds may be silently ignored, clipped, or not clipped. It may sometimes be difficult to guarantee that a certain operation is inside the bounds (e.g., drawing a rectangle whose size is determined by user inputs). In that case, consider calling Canvas.clipRect at the beginning of paint so everything that follows will be guaranteed to only draw within the clipped area.

Implementations should be wary of correctly pairing any calls to Canvas.save/Canvas.saveLayer and Canvas.restore, otherwise all subsequent painting on this canvas may be affected, with potentially hilarious but confusing results.

To paint text on a Canvas, use a TextPainter.

To paint an image on a Canvas:

  1. Obtain an ImageStream, for example by calling ImageProvider.resolve on an AssetImage or NetworkImage object.

  2. Whenever the ImageStream's underlying ImageInfo object changes (see ImageStream.addListener), create a new instance of your custom paint delegate, giving it the new ImageInfo object.

  3. In your delegate's paint method, call the Canvas.drawImage, Canvas.drawImageRect, or Canvas.drawImageNine methods to paint the ImageInfo.image object, applying the ImageInfo.scale value to obtain the correct rendering size.

Implementation

@override
void paint(Canvas canvas, Size size) {
  final double radius = size.width / 2;
  final Offset center = Offset(size.width / 2, size.height / 2);
  final Paint circlePaint = Paint()
    ..color = Colors.white
    ..style = PaintingStyle.stroke
    ..strokeWidth = 1;

  // Draw the circle
  canvas.drawCircle(center, radius, circlePaint);

  final double sliceAngle = 2 * pi / positionNames.length;
  final Paint paint = Paint()
    ..style = PaintingStyle.fill;

  const textStyle = TextStyle(
    color: Colors.white,
    fontSize: 12,
  );

  // Draw lines from center to tap point
  if (tapPoint != null) {
    final Paint linePaint = Paint()
      ..color = Colors.red
      ..style = PaintingStyle.stroke
      ..strokeWidth = 3;
    canvas.drawLine(center, tapPoint!, linePaint);

    // Draw dot at the end of the line
    final Paint dotPaint = Paint()
      ..color = Colors.red
      ..style = PaintingStyle.fill;
    canvas.drawCircle(tapPoint!, 4.0, dotPaint);

  }

  for (int i = 0; i < positionNames.length; i++) {
    final Path path = Path();
    path.moveTo(center.dx, center.dy);
    final double startAngle = sliceAngle * i;
    final double endAngle = sliceAngle * (i + 1);
    path.lineTo(
      center.dx + radius * cos(startAngle),
      center.dy + radius * sin(startAngle),
    );
    path.arcTo(
      Rect.fromCircle(center: center, radius: radius),
      startAngle,
      sliceAngle,
      false,
    );
    path.close();

    // Set color based on selection
    if (selectedPosition != null && i == selectedPosition) {
      paint.color = selectedPositionColor;
    } else {
      paint.color = groundColor;
    }

    canvas.drawPath(path, paint);

    // Inner Border
    final Paint strokePaint = Paint()
      ..color = Colors.white
      ..style = PaintingStyle.stroke
      ..strokeWidth = 1;
    canvas.drawPath(path, strokePaint);

    final double midAngle = (startAngle + endAngle) / 2;
    final double textCenterX = center.dx + radius * 0.8 * cos(midAngle);
    final double textCenterY = center.dy + radius * 0.8 * sin(midAngle);

    final textSpan = TextSpan(
      text: positionNames[i],
      style: textStyle,
    );
    final textPainter = TextPainter(
      text: textSpan,
      textDirection: TextDirection.ltr,
    );
    textPainter.layout();

    final textOffset = Offset(
      textCenterX - textPainter.width / 2,
      textCenterY - textPainter.height / 2,
    );

    textPainter.paint(canvas, textOffset);
  }
}