spacingView static method

Widget spacingView({
  1. num? width,
  2. num? height,
})

用来做间距

Implementation

static Widget spacingView({num? width, num? height}) {
  var _w = width ?? FConfig.ins.space;
  var _h = height ?? FConfig.ins.space;
  return SizedBox(width: _w.ww, height: _h.hh);
}