【发布时间】:2020-04-17 01:00:10
【问题描述】:
在屏幕底部,优惠券代码文本表单字段和申请按钮有错位。 如何将这些小部件设置为相同的高度并完美对齐?
Row(
mainAxisAlignment: MainAxisAlignment.end,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Container(
width: 150,
//color: Colors.blue,
child: TextFormField(
decoration: new InputDecoration(
hintText: 'Coupon Code',
contentPadding: EdgeInsets.all(8),
isDense: true,
border: new OutlineInputBorder(
borderSide: new BorderSide(color: Colors.grey)),
),
),
),
Container(
//color: Colors.green,
padding: EdgeInsets.fromLTRB(15, 0, 0, 15),
child: RaisedButton(
onPressed: () {},
color: Colors.grey[400],
textColor: Colors.black,
child: Text('Apply', style: TextStyle(fontSize: 12)),
),
),
],
)
【问题讨论】:
标签: flutter