Flutter Widgets

Expanded

Widgets can be sized to fit within a row or column by using the Expanded widget.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Expanded(
child: Image.asset('images/pic1.jpg'),
),
Expanded(
flex: 2,
child: Image.asset('images/pic2.jpg'),
),
Expanded(
child: Image.asset('images/pic3.jpg'),
),
],
);

row-expanded-visual.png