Flutter UI design #Shorts.
How to give rounded corner to a container.
Add this line : borderRadius: BorderRadius.circular(20),
Container(
height: 120,
width: 200,
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.circular(20),
image: DecorationImage(
fit: BoxFit.fill,
image: NetworkImage('Your image URL')
)
),
)