Changing focus from one text field to the next in Flutter

前端 未结 4 1754
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-05 03:40

I have two textFormField widgets. Once the user has completed the first text field I would like to focus on the next textField. Is there a way to do

4条回答
  •  臣服心动
    2021-02-05 04:10

    There's a similar method like in Android.

    Add

    textInputAction
    

    parameter to the TextFormField Widget, then add the property as;

     TextInputAction.next
    

提交回复
热议问题