How To Change The Color Of Column In Flutter

[Solved] How To Change The Color Of Column In Flutter | Dart - Code Explorer | yomemimo.com
Question : how to change the color of column in flutter

Answered by : mutasim-almualimi

// Column, Row and Stack do not have a backgroundColor attribute, so we need to
// wrap them with Container, and set the color of the Container
Container(	color: Colors.red, child: Column(	children:[], ),
),
// now the backgroundColor of the Column is obviously red

Source : | Last Update : Sat, 10 Sep 22

Answers related to how to change the color of column in flutter

Code Explorer Popular Question For Dart