defaults constant

MinShadows const defaults

Implementation

static const MinShadows defaults = MinShadows(
  sm: [
    BoxShadow(
      offset: Offset(0, 1),
      blurRadius: 2,
      color: Color(0x0D000000),
    ),
  ],
  md: [
    BoxShadow(
      offset: Offset(0, 4),
      blurRadius: 6,
      color: Color(0x1A000000),
    ),
  ],
  lg: [
    BoxShadow(
      offset: Offset(0, 10),
      blurRadius: 15,
      color: Color(0x1A000000),
    ),
  ],
  xl: [
    BoxShadow(
      offset: Offset(0, 20),
      blurRadius: 25,
      color: Color(0x1A000000),
    ),
  ],
  xl2: [
    BoxShadow(
      offset: Offset(0, 25),
      blurRadius: 50,
      color: Color(0x40000000),
    ),
  ],
);