gpt4 book ai didi

flutter - '此表达式的类型为 'void',因此无法使用其值。' Flutter 中的 setState() 错误

转载 作者:行者123 更新时间:2023-12-04 09:33:58 27 4
gpt4 key购买 nike

当我尝试重建一个类时,我收到了上面引用的错误。我正在调用的类 ListOfIngs() 是一个基本上创建 textField 的类,但我的目标是创建大量的 TextField,变量 countIngs 在一个 listView 中保存确切数字的值。这是代码:

        body: Container(
padding: EdgeInsets.fromLTRB(10.0, 20.0, 10.0, 30.0),
child: Column(
children: <Widget>[
Row(
children: <Widget>[
Text('Ingredients',
style: GoogleFonts.biryani(fontSize: 15.0)),
IconButton(
icon: new Icon(Icons.add),
onPressed: () {
setState(() {
countings++;
});
debugPrint('$countings');
},
)
],
),
setState(() {
ListOfIngsWidget(countings);
}),
],
),
)

最佳答案

尝试这个:

class ListOfIngs extends State<ListOfIngsWidget> {
final int countIngs;
final myController = new TextEditingController();
ListOfIngs(
this.countIngs,
);
Widget build(BuildContext contex) {
return new Container(
child: ListView.builder(
itemCount: countIngs,
itemBuilder: (context,index){
return Container(
child: TextField(
controller: myController,
decoration: InputDecoration(
border: OutlineInputBorder(),
labelText: 'Ingredient $index',
),
),
);
},
),
);
}
}

关于flutter - '此表达式的类型为 'void',因此无法使用其值。' Flutter 中的 setState() 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62683420/

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