getWebeSeaShape static method

Widget getWebeSeaShape(
  1. double height_width
)

Implementation

static Widget getWebeSeaShape(double height_width){
  return Container(
    child: RepaintBoundary(
      child: CustomPaint(
        size: Size(height_width, height_width),
        foregroundPainter: SeaCustomPainter(),
      ),
    ),
  );
}