【发布时间】:2020-08-01 02:33:01
【问题描述】:
我正在使用下面的代码将容器的背景颜色设置为 黑色,但它没有显示。
Align(
alignment: Alignment.bottomCenter,
child: Container(
color: Colors.black,
margin: EdgeInsets.only(left: 20, right: 20, bottom: 20, top: 10),
height: 40,
width: double.infinity,
child: RaisedButton(
textColor: Colors.white,
color: Colors.blue[300],
onPressed: () => null,
child: Text('Next'),
),
),
)
输出:
有人可以帮帮我吗?
【问题讨论】:
标签: flutter flutter-layout flutter-widget