getClip method

  1. @override
Path getClip(
  1. Size size
)
override

Returns a description of the clip given that the render object being clipped is of the given size.

Implementation

@override
Path getClip(Size size) {
  var controlPoint1 = Offset(150, size.height - 200);
  var controlPoint2 = Offset(size.width - 250, size.height);
  var endPoint = Offset(size.width, size.height - 0);

  Path path = Path()
    // ..moveTo(size.width / 2, 0)
    ..lineTo(0, size.height - 100)
    ..cubicTo(controlPoint1.dx, controlPoint1.dy, controlPoint2.dx,
        controlPoint2.dy, endPoint.dx, endPoint.dy)
    ..lineTo(size.width, 0)
    ..close();

  return path;
}