使“列强制容器”与其他小部件的大小相同

时间:2019-12-16 21:51:45

标签: flutter dart

DartPad示例在这里:https://dartpad.dev/cf6ab1d34f5b1022aa48ea8ced193de5

我正在尝试显示分数,但是我无法获得作为分数栏的容器,无法展开到整个屏幕。这是我现在拥有的代码:

Center(
   child: Column(
       children: <Widget>[
          Text("100"),
          Container(
              height: 2,
              color: Colors.black,
          ),
          Text("300"),
       ],
    ),
 )

1 个答案:

答案 0 :(得分:2)

使用IntrinsicWidth

IntrinsicWidth(
  child: Column(
    children: [
      Text("100"),
      Container(
        height: 2,
        color: Colors.black,
      ),
      Text("300"),
    ],
  ),
)