创建指定高度的 SizedBox
@param height 高度值 @return 指定高度的 SizedBox 实例
static SizedBox height(double height, {Widget? child}) { return SizedBox(height: height, child: child); }