outerShadowMd property

VxBox outerShadowMd
inherited

Implementation

T get outerShadowMd => _addShadow(shadows: <BoxShadow>[
      const BoxShadow(
        offset: Offset(0, 4),
        blurRadius: 6,
        spreadRadius: -1,
        color: Color.fromRGBO(0, 0, 0, 0.1),
      ),
      const BoxShadow(
        offset: Offset(0, 2),
        blurRadius: 4,
        spreadRadius: -1,
        color: Color.fromRGBO(0, 0, 0, 0.06),
      )
    ]);