defaultBoxShadow constant

List<BoxShadow> const defaultBoxShadow

LitSnackbars have a box shadow by default.

Keep in mind to avoid boxshadows on transparent LitSnackbar implementations.

Implementation

static const List<BoxShadow> defaultBoxShadow = const [
  const BoxShadow(
    blurRadius: 8.0,
    color: const Color(0x42000000),
    offset: const Offset(-3.0, 3.0),
    spreadRadius: -1.0,
  ),
];