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) {
  final path = Path();
  final halfWidth = size.width / 2;
  final halfSpace = space / 2.5;
  final curve = space / 16;
  final height = halfSpace / 0.95;
  path.lineTo(halfWidth - halfSpace, 0);
  path.cubicTo(halfWidth - halfSpace, 0, halfWidth - halfSpace + curve,
      height, halfWidth, height);

  path.cubicTo(halfWidth, height, halfWidth + halfSpace - curve, height,
      halfWidth + halfSpace, 0);

  path.lineTo(size.width, 0);
  path.lineTo(size.width, size.height);
  path.lineTo(0, size.height);
  path.close();

  return path;
}