问题说明了自己是什么问题
代码段:
下面的代码对于Column
可以正常工作,但是当我将其替换为Row
时,它没有在屏幕上显示Divider。
Column(
children: <Widget>[
Divider(
thickness: 1,
color: Colors.black,
),
SizedBox(
width: 50,
),
Divider(
thickness: 1,
color: Colors.black,
),
],
),
答案 0 :(得分:0)
行小部件必须与Expanded/Flexible
小部件一起使用分隔器
Row(
children: <Widget>[
Flexible(
child: Divider(
thickness: 1,
color: Colors.black,
),
),
SizedBox(
width: 10,
),
Flexible(
child: Divider(
thickness: 1,
color: Colors.black,
),
),
],
),