Answers for "change color of container flutter"

1

how to change color in container flutter

new Container(
  color: Colors.pink,
  decoration: new BoxDecoration(
    borderRadius: new BorderRadius.circular(16.0),
    color: Colors.green,
  ),
);
Posted by: Guest on December-21-2021
1

color container flutter

Container(color: Colors.red);
Posted by: Guest on October-12-2021

Code answers related to "change color of container flutter"

Browse Popular Code Answers by Language