我正在尝试使用VerticalDivider
小部件来分隔Row
中的项目。 Here是整个身体。
行:
Row(
children: <Widget>[
Text('420 Posts', style: TextStyle(color: Color(0xff666666)),),
VerticalDivider(
thickness: 2,
width: 20,
color: Colors.black,
),
Text('420 Posts', style: TextStyle(color: Color(0xff666666)),)
],
),
答案 0 :(得分:25)
用Row
将IntrinsicHeight
包裹起来
IntrinsicHeight(
child: Row(
children: <Widget>[
Text('420 Posts', style: TextStyle(color: Color(0xff666666)),),
VerticalDivider(
thickness: 2,
width: 20,
color: Colors.black,
),
Text('420 Posts', style: TextStyle(color: Color(0xff666666)),)
],
),
)
答案 1 :(得分:1)
您还可以将行包装到具有指定高度的容器中。