Hi Guys,
I have one Container in Flutter code. Inside this code, I have used the BoxDecoration method. But Flutter BoxDecoration’s background color overrides the Container's background color. I have attached the script below.
new Container(
color: Colors.pink,
decoration: new BoxDecoration(
borderRadius: new BorderRadius.circular(16.0),
color: Colors.green,
),
);