getDefaultBoxShadow static method

List<BoxShadow> getDefaultBoxShadow()

Implementation

static List<BoxShadow> getDefaultBoxShadow() {
  return [
    BoxShadow(
      color: Colors.black.withValues(alpha: 0.05), // 阴影颜色
      blurRadius: 5, // 模糊半径
      offset: Offset(1, 1), // 阴影偏移
    ),
  ];
}