Flutter - GetX,获取每个输入的值

时间:2021-02-25 09:45:10

标签: flutter getx

Input code

My Screen

Here is my input

我不知道在按下提交按钮时获取每​​个输入的值。希望任何人都可以在这种情况下帮助我

我的代码:

 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()
                  : ''),
            ),
          ],
        ),
      ),

0 个答案:

没有答案