getBoxStandard static method

SizedBox getBoxStandard({
  1. Key? key,
  2. Widget? child,
  3. double? coverWidth,
  4. double? coverHeight,
})

////////////////// SizedBox ///////////////////////

Implementation

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