原因
需要给VerticalDivider一个高度才会显示用Sizebox可以实现,不过最好用IntrinsicHeight。
解决办法1:
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)),)
],
),
)
解决办法2:
SizedBox(
height: 40
child: VerticalDivider(
thickness: 2,
width: 20,
color: Colors.black,
),
)