getHorizontal static method

Widget getHorizontal(
  1. double width
)

自定义水平间隔

Implementation

static Widget getHorizontal(double width){
  return SizedBox(
    width: getHeight(width),
  );
}