- Published on
How to add background image to a container in Flutter?
- Authors
- Name
- Saad Bash
Use decoration
property of container -> BoxDecoration
with ImageProvider
.
Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/bg.png"),
// To add network image
// image: NetworkImage(_imageURL),
fit: BoxFit.cover,
),
),
child: Text('Container with background image!'),
),