How to make a widget's size same as another widget in Flutter
问题 The length of the texts on right is not fixed. I want to make the height of the line on left same as the texts area height. Is there a way to align a widget to another widget like Android's RelativeLayout or ConstraintLayout in Flutter? my code: Container( padding: EdgeInsets.fromLTRB(100, 0, 100, 0), child: Row( crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ Container( color: Color(0xFFEEEEEE), width: 4, height: 80, margin: EdgeInsets.only(right: 10), ), Expanded( child: