paint method

  1. @override
void paint(
  1. Canvas canvas,
  2. Rect rect,
  3. {TextDirection? textDirection}
)
override

Paints the border within the given Rect on the given Canvas.

The textDirection argument must be provided and non-null if the border has a text direction dependency (for example if it is expressed in terms of "start" and "end" instead of "left" and "right"). It may be null if the border will not need the text direction to paint itself.

Implementation

@override
void paint(Canvas canvas, Rect rect, {TextDirection? textDirection}) {
  if (rect.isEmpty) return;
  switch (side.style) {
    case BorderStyle.none:
      break;
    case BorderStyle.solid:
      final Path path = getOuterPath(rect, textDirection: textDirection)
        ..addPath(
          getInnerPath(rect, textDirection: textDirection),
          Offset.zero,
        );
      canvas.drawPath(path, side.toPaint());
      break;
  }
}