YSpacer function

Widget YSpacer({
  1. double width = 0,
  2. double height = 0,
})

间距组件

Implementation

Widget YSpacer({double width = 0, double height = 0}) => SizedBox(width: width, height: height);