standardShadow top-level property

List<BoxShadow> standardShadow
final

Implementation

final standardShadow = [
  BoxShadow(
    color: Colors.grey.withOpacity(0.35),
    spreadRadius: 1,
    blurRadius: 1,
    offset: const Offset(0, 0),
    blurStyle: BlurStyle.outer,
  )
];