getOutlinedShadow static method

List<BoxShadow> getOutlinedShadow(
  1. Color borderColor
)

Outlined button shadow (minimal)

Implementation

static List<BoxShadow> getOutlinedShadow(Color borderColor) => [
  BoxShadow(
    color: borderColor.withValues(alpha: 0.08),
    blurRadius: 6,
    offset: const Offset(0, 2),
  ),
];