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 rect = Offset.zero & size;

  var path = ui.Path();
  var borderPath = ui.Path();
  var filterPath = ui.Path();
  var paint = Paint();
  bool needsLayerSaving = false;

  Paint? borderPaint;
  Paint? filterPaint;
  int? lastHash;

  void drawPaths() {
    final hasBorder = borderPaint != null && filterPaint != null;
    if (hasBorder) {
      if (needsLayerSaving) {
        canvas.saveLayer(rect, Paint());
      }

      canvas.drawPath(borderPath, borderPaint!);
      borderPath = ui.Path();
      borderPaint = null;

      if (needsLayerSaving) {
        canvas.drawPath(filterPath, filterPaint!);
        filterPath = ui.Path();
        filterPaint = null;

        canvas.restore();
      }
    }

    canvas.drawPath(path, paint);
    path = ui.Path();
    paint = Paint();
  }

  for (final polyline in polylines) {
    final offsets = getOffsets(polyline.points);
    if (offsets.isEmpty) {
      continue;
    }

    final hash = polyline.renderHashCode;
    if (needsLayerSaving || (lastHash != null && lastHash != hash)) {
      drawPaths();
    }
    lastHash = hash;
    needsLayerSaving = polyline.color.opacity < 1.0 ||
        (polyline.gradientColors?.any((c) => c.opacity < 1.0) ?? false);

    late final double strokeWidth;
    if (polyline.useStrokeWidthInMeter) {
      final firstPoint = polyline.points.first;
      final firstOffset = offsets.first;
      final r = const Distance().offset(
        firstPoint,
        polyline.strokeWidth,
        180,
      );
      final delta = firstOffset - getOffset(r);

      strokeWidth = delta.distance;
    } else {
      strokeWidth = polyline.strokeWidth;
    }

    final isDotted = polyline.isDotted;
    paint = Paint()
      ..strokeWidth = strokeWidth
      ..strokeCap = polyline.strokeCap
      ..strokeJoin = polyline.strokeJoin
      ..style = isDotted ? PaintingStyle.fill : PaintingStyle.stroke
      ..blendMode = BlendMode.srcOver;

    if (polyline.gradientColors == null) {
      paint.color = polyline.color;
    } else {
      polyline.gradientColors!.isNotEmpty
          ? paint.shader = _paintGradient(polyline, offsets)
          : paint.color = polyline.color;
    }

    if (polyline.borderColor != null && polyline.borderStrokeWidth > 0.0) {
      // Outlined lines are drawn by drawing a thicker path underneath, then
      // stenciling the middle (in case the line fill is transparent), and
      // finally drawing the line fill.
      borderPaint = Paint()
        ..color = polyline.borderColor ?? const Color(0x00000000)
        ..strokeWidth = strokeWidth + polyline.borderStrokeWidth
        ..strokeCap = polyline.strokeCap
        ..strokeJoin = polyline.strokeJoin
        ..style = isDotted ? PaintingStyle.fill : PaintingStyle.stroke
        ..blendMode = BlendMode.srcOver;

      filterPaint = Paint()
        ..color = polyline.borderColor!.withAlpha(255)
        ..strokeWidth = strokeWidth
        ..strokeCap = polyline.strokeCap
        ..strokeJoin = polyline.strokeJoin
        ..style = isDotted ? PaintingStyle.fill : PaintingStyle.stroke
        ..blendMode = BlendMode.dstOut;
    }

    final radius = paint.strokeWidth / 2;
    final borderRadius = (borderPaint?.strokeWidth ?? 0) / 2;

    if (isDotted) {
      final spacing = strokeWidth * 1.5;
      if (borderPaint != null && filterPaint != null) {
        _paintDottedLine(borderPath, offsets, borderRadius, spacing);
        _paintDottedLine(filterPath, offsets, radius, spacing);
      }
      _paintDottedLine(path, offsets, radius, spacing);
    } else {
      if (borderPaint != null && filterPaint != null) {
        _paintLine(borderPath, offsets);
        _paintLine(filterPath, offsets);
      }
      _paintLine(path, offsets);
    }
  }

  drawPaths();
}