innerShadows top-level constant

List<Shadow> const innerShadows

A list of inner shadows used for the Neumorphic Checkbox widget.

This list defines the shadows that will be applied inside the checkbox to create a neumorphic effect, giving it a 3D appearance.

Implementation

const innerShadows = [
  Shadow(
    color: Color(0x30000000),
    blurRadius: 2,
    offset: Offset(2, 2),
  ),
  Shadow(
    color: Color(0x20FFFFFF),
    blurRadius: 2,
    offset: Offset(-2, -2),
  ),
];