gpt4 book ai didi

Flutter LBS 到 KG 设计

转载 作者:IT王子 更新时间:2023-10-29 06:54:35 27 4
gpt4 key购买 nike

我正在尝试制作我在这里绘制的设计:

enter image description here

我的代码现在是:

  @override
Widget build(BuildContext context) {
// Build a Form widget using the _formKey we created above
return Form(
key: _formKey,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
new Text(
'LBS: ',
),
TextFormField(
validator: (value) {
if (value.isEmpty) {
return 'Please enter LBS';
}
},
),

new Text(
'KG: ',
),
new Text(
'{kg value} ',
),

new Row(
new RaisedButton(
onPressed: null,
child: Text('Convert'),
),
new RaisedButton(
onPressed: null,
child: Text('Swap'),
)

),
],
),
);
}

我的问题是我想在新行中放置两个按钮。“new Row(”不期望参数。

最佳答案

将你的按钮包裹成一个 child :[ ... ]

Row(
children: <Widget>[
new RaisedButton(
onPressed: null,
child: Text('Convert'),
),
new RaisedButton(
onPressed: null,
child: Text('Swap'),
],
)

关于Flutter LBS 到 KG 设计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52965029/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com