Flutter UI design #Shorts.
How to set background image in container and fill the image in container.
Container(
height: 120,
width: 200,
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.circular(20),
image: DecorationImage(
fit: BoxFit.fill,
image: NetworkImage('Your image URL')
)
),
)