outerShadow property

VxBox outerShadow
inherited

Implementation

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