Answers for "flutter container color"

2

background color to container flutter

new Container(
  width: 100,
  height: 30,
  decoration: new BoxDecoration(
    color: Colors.green
  ),
 )
Posted by: Guest on November-13-2020
1

color container flutter

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

Code answers related to "flutter container color"

Browse Popular Code Answers by Language