我不知道在按下提交按钮时获取每个输入的值。希望任何人都可以在这种情况下帮助我
我的代码:
Obx(
() => Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
for (var i = 0; i < 5; i++)
InputNumberWidget(
borderType: BorderType.enabled,
enable: _.questionList[i] != -1 ? false : true,
controller: TextEditingController(
text: _.questionList[i] != -1
? _.questionList[i].toString()
: ''),
),
],
),
),