shadow constant

List<BoxShadow> const shadow

The popover's default shadow in FPopoverStyle.inherit.

Implementation

static const shadow = [
  BoxShadow(
    color: Color(0x1a000000),
    offset: Offset(0, 4),
    blurRadius: 6,
    spreadRadius: -1,
  ),
  BoxShadow(
    color: Color(0x1a000000),
    offset: Offset(0, 2),
    blurRadius: 4,
    spreadRadius: -2,
  ),
];