deep property

List<BoxShadow> get deep

Provides a configuration for a deep shadow.

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

Implementation

static List<BoxShadow> get deep => _createShadow(
      color: FxColor.dark.withValues(alpha: 0.3),
      blurRadius: 16.0,
      offset: const Offset(0.0, 12.0),
      spreadRadius: 2.0,
    );