我认为我滥用了Expanded
组件。我希望它能吸收全部的宽度,但它确实占用了高度。
这是我在启用调试模式的情况下得到的(“检出”按钮):
这是代码,我做了什么:
Container(
decoration: cardDecoration,
child: Column(
children: <Widget>[
Expanded(
child: Container(
padding: EdgeInsets.only(top : 10.0),
child: RaisedButton(
onPressed: (){},
shape: RoundedRectangleBorder(borderRadius:
BorderRadius.only(
bottomLeft : Radius.circular(20.0),
bottomRight : Radius.circular(20.0)
)
),
color: Theme.of(context).primaryColor,
child: Text(
'Check out'.toUpperCase(),
style: TextStyle(
color: Colors.white,
),
),
),
),
)
)