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 Paint backgroundPaint = Paint()
    ..color = backgroundColor ?? (isDarkMode ? Colors.black12 : Colors.white)
    ..style = PaintingStyle.fill;

  final Paint progressPaint = Paint()
    ..shader = LinearGradient(
      colors: [
        progressColor ?? Colors.red.shade600,
        progressColor ?? Colors.red.shade100,
      ],
    ).createShader(Rect.fromCircle(
        center: Offset(size.width / 2, size.height / 2),
        radius: size.width / 2))
    ..style = PaintingStyle.stroke // Change to stroke
    ..strokeWidth = 24;

  final Paint markPaint = Paint()
    ..color = markColor ?? (isDarkMode ? Colors.grey.shade800 : Colors.grey.shade300)
    ..style = PaintingStyle.fill;

  final Paint borderPaint = Paint()
    ..color = borderColor ?? (isDarkMode ? Colors.grey.shade800 : Colors.grey.shade200)
    ..style = PaintingStyle.stroke
    ..strokeWidth = 24;

  final double radius = size.width / 2;

  // Draw background
  canvas.drawCircle(Offset(radius, radius), radius, backgroundPaint);

  // Draw border
  canvas.drawCircle(Offset(radius, radius), radius, borderPaint);

  // Draw progress arc
  double sweepAngle = (percentage / 100) * 2 * pi;
  canvas.drawArc(
    Rect.fromCircle(center: Offset(radius, radius), radius: radius),
    -pi / 2,
    sweepAngle,
    false,
    progressPaint,
  );

  // Draw marks
  int numberOfMarks = (maxValue - minValue).round();
  double markRadius = 3;
  double margin = 24;
  for (int i = 0; i <= numberOfMarks; i++) {
    double angle = -pi / 2 + (i / numberOfMarks) * 2 * pi;
    double markX = radius + (radius - margin) * cos(angle);
    double markY = radius + (radius - margin) * sin(angle);

    canvas.drawCircle(Offset(markX, markY), markRadius, markPaint);
  }

  // Calculate the position of the moving circle based on the current value
  double movingCircleAngle = -pi / 2 + (percentage / 100) * 2 * pi;
  double movingCircleX = radius + radius * cos(movingCircleAngle);
  double movingCircleY = radius + radius * sin(movingCircleAngle);

  final Paint movingCirclePaint = Paint()
    ..color = Colors.white
    ..style = PaintingStyle.fill
    ..strokeWidth = 4
    ..strokeCap = StrokeCap.round;

  // Optional: Add a border around the moving circle for better visibility
  final Paint movingCircleBorderPaint = Paint()
    ..color = Colors.red.shade600
    ..style = PaintingStyle.stroke
    ..strokeWidth = 2;

  // Draw moving circle with border
  canvas.drawCircle(Offset(movingCircleX, movingCircleY), 12, movingCircleBorderPaint);
  canvas.drawCircle(Offset(movingCircleX, movingCircleY), 10, movingCirclePaint);
}