DartPad示例在这里:https://dartpad.dev/cf6ab1d34f5b1022aa48ea8ced193de5。
我正在尝试显示分数,但是我无法获得作为分数栏的容器,无法展开到整个屏幕。这是我现在拥有的代码:
Center(
child: Column(
children: <Widget>[
Text("100"),
Container(
height: 2,
color: Colors.black,
),
Text("300"),
],
),
)
答案 0 :(得分:2)
IntrinsicWidth(
child: Column(
children: [
Text("100"),
Container(
height: 2,
color: Colors.black,
),
Text("300"),
],
),
)