What is the difference between Expanded and Flexible?

 

WidgetBehavior
ExpandedTakes all available space
FlexibleTakes only the needed space

Example:

Row( children: [ Expanded(child: Container(color: Colors.red)), Flexible(child: Container(color: Colors.blue)), ], );

Comments

Popular posts from this blog

1. What is Flutter?

What is FutureBuilder and StreamBuilder?