getBoxStandard static method
////////////////// SizedBox ///////////////////////
Implementation
// 标准的视觉密度盒子
static SizedBox getBoxStandard(
{Key? key, Widget? child, double? coverWidth, double? coverHeight}) {
return getSquareBox(48, key: key, child: child);
}