颤振:分频器未显示在行小部件中

时间:2020-07-12 14:08:52

标签: flutter

问题说明了自己是什么问题

代码段: 下面的代码对于Column可以正常工作,但是当我将其替换为Row时,它没有在屏幕上显示Divider。

 Column(
        children: <Widget>[
          Divider(
            thickness: 1,
            color: Colors.black,
          ),
          SizedBox(
            width: 50,
          ),
          Divider(
            thickness: 1,
            color: Colors.black,
          ),
        ],
      ),

1 个答案:

答案 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,
            ),
          ),
        ],
      ),