Example 1: flutter add shadow to container
Container(
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.8),
spreadRadius: 10,
blurRadius: 5,
offset: Offset(0, 7),
),
],
),
child: Image.asset(chocolateImage),
)
Example 2: 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 3: shadow container flutter
BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 5,
blurRadius: 7,
offset: Offset(0, 3),
),
],
)
Example 4: flutter container shadow
return Container(
margin: EdgeInsets.only(left: 30, top: 100, right: 30, bottom: 50),
height: double.infinity,
width: double.infinity,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(10),
topRight: Radius.circular(10),
bottomLeft: Radius.circular(10),
bottomRight: Radius.circular(10)
),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 5,
blurRadius: 7,
offset: Offset(0, 3),
),
],
),
Example 5: how to add box shadow in flutter
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"),
);
Example 6: flutter shadow container
Card(
elevation: 8,
child: Container(width: 100, height: 100, color: Colors.blue),
),