flutter set shadow code example
Example 1: box shadow flutter
new Container(
height: 200.0,
decoration: new BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.red,
blurRadius: 25.0,
spreadRadius: 5.0,
offset: Offset(
15.0,
15.0,
),
)
],
);
child: new Text("Hello world"),
);
Example 2: flutter set shadow
new Container(
height: 200.0,
decoration: new BoxDecoration(
boxShadow: [
color: Colors.white,
BoxShadow(
color: Colors.red,
blurRadius: 25.0,
spreadRadius: 5.0,
offset: Offset(
15.0,
15.0,
),
)
],
),
child: new Text("Hello world"),
);