getSecondaryShadow static method

List<BoxShadow> getSecondaryShadow()

Secondary button shadow (subtle)

Implementation

static List<BoxShadow> getSecondaryShadow() => [
  BoxShadow(
    color: Colors.black.withValues(alpha: 0.04),
    blurRadius: 4,
    offset: const Offset(0, 2),
  ),
  BoxShadow(
    color: Colors.black.withValues(alpha: 0.02),
    blurRadius: 8,
    offset: const Offset(0, 4),
  ),
];