strong property

List<BoxShadow> get strong

Provides a configuration for a strong shadow.

Returns a list containing a single BoxShadow with a strong shadow effect.

Implementation

static List<BoxShadow> get strong => _createShadow(
      color: FxColor.dark.withValues(alpha: 0.25),
      blurRadius: 12.0,
      offset: const Offset(0.0, 8.0),
      spreadRadius: 1.0,
    );