Flutter / Android - moving focus from a TextField to a DropdownButton

后端 未结 3 1120
醉梦人生
醉梦人生 2021-02-14 14:35

I have a textfield and a dropdownbutton on a screen. When I move from the textfield to choose an item and then back to the textfield I find this a little bit awkward.

3条回答
  •  误落风尘
    2021-02-14 14:47

    Sorry for the late Answer... I'm also finding the solution for this. now i get it.

    Only you have to add this

     FocusScope.of(context).requestFocus(new FocusNode());
    

    in your

    _dropdownChange(val) method

    void _dropdownChange(val) {
     setState(() {
       FocusScope.of(context).requestFocus(new FocusNode());///It will clear all focus of the textfield
       selectedDropdown = val;
     });
    }
    

    also refer Abdul Wahab answer

提交回复
热议问题