在 Flutter中,Form和TextFormField是输入文本时非常有用的Widget。
我们如何在键盘上按“下一步”时,正确的移动输入焦点的呢?...: TextInputAction.next,
keyboardType: TextInputType.emailAddress,
// move...labelText: 'Password',
),
obscureText: true,
textInputAction...: TextInputAction.done,
// move to the next field
onEditingComplete: _node.nextFocus...onPressed: () {/* submit code here */},
),
],
),
),
);
}
}
通过添加