我在 TextFormField 中编写了此代码,用于处理转到下一个框,但只有当输入框完成时它才会返回。
onChanged: (value) {
if (value.length == 1 && index < 5) {
FocusScope.of(context).nextFocus();
}
if ((controllers[index].text.isEmpty || value.isEmpty) &&
index > 0) {
FocusScope.of(context).previousFocus();
}
setState(() {});
},
假设我在输入过程中想返回。我该怎么做?