flutter expanded flex
Row(
children: [
Expanded(
flex: 1,
child: Container(
height: 100.0,
color: Colors.red,
width: 100.0,
),
),
Expanded(
flex: 2,
child: Container(
height: 100.0,
color: Colors.green,
width: 100.0,
),
),
Container(
height: 100.0,
color: Colors.blue,
width: 100.0,
),
],
)