elevatedDecorationOutside property

BoxDecoration elevatedDecorationOutside
final

Implementation

static final elevatedDecorationOutside = BoxDecoration(
  color: background,
  border: Border(
    top: const BorderSide(color: Flutter95.white, width: _elevationWidth),
    left: const BorderSide(color: Flutter95.white, width: _elevationWidth),
    bottom: BorderSide(color: Flutter95.grays[3], width: _elevationWidth),
    right: BorderSide(color: Flutter95.grays[3], width: _elevationWidth),
  ),
);