getWebeMountainsShape static method

Widget getWebeMountainsShape(
  1. double height_width
)

Implementation

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