getOuterPath method
- Rect rect, {
- TextDirection? textDirection,
override
Create a Path that describes the outer edge of the border.
This path must not cross the path given by getInnerPath 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 getInnerPath (using Path.addPath).
The textDirection
argument must be provided 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:
- getInnerPath, which creates the path for the inner edge.
- Path.contains, which can tell if an Offset is within a Path.
Implementation
@override
Path getOuterPath(Rect rect, { TextDirection? textDirection }) {
return Path()..addOval(_adjustRect(rect));
}