getInnerPath method

  1. @override
Path getInnerPath(
  1. Rect rect,
  2. {TextDirection? textDirection}
)
override

Create a Path that describes the inner edge of the border.

This path must not cross the path given by getOuterPath for the same Rect.

To obtain a Path that describes the area of the border itself, set the Path.fillType of the returned object to PathFillType.evenOdd, and add to this object the path returned from getOuterPath (using Path.addPath).

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.

See also:

Implementation

@override
Path getInnerPath(Rect rect, { TextDirection? textDirection }) {
  final Radius radius = Radius.circular(rect.shortestSide / 2.0);
  final RRect borderRect = RRect.fromRectAndRadius(rect, radius);
  final RRect adjustedRect = borderRect.deflate(side.strokeInset);
  return Path()
    ..addRRect(adjustedRect);
}