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

后端 未结 3 1168
醉梦人生
醉梦人生 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:51

    There's currently an ongoing issue in the flutter GitHub repo about this problem. It isn't solved as of yet, but there's a convenient workaround in place this comment implies.

    You can add FocusManager.instance.primaryFocus.unfocus(); to the onTap() event of your DropdownButton that should 'steal' focuses off of the TextField that was previously focused on the dropdown tap.

提交回复
热议问题