boxShadow constant

BoxShadow const boxShadow

Implementation

static const boxShadow = BoxShadow(
  color: Colors.black12,
  blurRadius: 4.0, // has the effect of softening the shadow
  spreadRadius: 0, // has the effect of extending the shadow
  offset: Offset(
    0, // horizontal, move right 10
    0, // vertical, move down 10
  ),
);