Flutter Expanded Widget

Center(
  child: Column(
  children: <Widget>[
    Container(
      color: Colors.red,
      height: 100,
      width: 100,
    ),
    Expanded(
      child: Container(
        color: Colors.blue,
        width: 100,
      ),
    ),
    Container(
      color: Colors.red,
      height: 100,
      width: 100,
    ),
  ],
)

Subscribe For Daily Updates

Flutter Questions
Android Questions