How to listen focus change in flutter?

后端 未结 3 1214
轻奢々
轻奢々 2021-02-02 05:50

In Android, we can call setOnFocusChangeListener(), do something in onFocusChanged() method, but flutter does not provider onFocus() inter

3条回答
  •  佛祖请我去吃肉
    2021-02-02 06:34

    In addtion you can use Focus widget.

    Focus(
      child: TextFormField(...),
      onFocusChange: (hasFocus) {
        if(hasFocus) {
          // do stuff
        }
      },
    )
    

提交回复
热议问题