elevated static method

List<BoxShadow> elevated(
  1. Color shadowColor
)

Elevated surface shadow — stronger depth for floating surfaces.

Implementation

static List<BoxShadow> elevated(Color shadowColor) => [
  BoxShadow(
    color: shadowColor.withValues(alpha: 0.12),
    blurRadius: 24,
    offset: const Offset(0, 8),
  ),
  BoxShadow(
    color: shadowColor.withValues(alpha: 0.06),
    blurRadius: 12,
    offset: const Offset(0, 4),
  ),
];