Flutter: keyboard disappears immediately when editing my text fields

后端 未结 6 788
醉酒成梦
醉酒成梦 2021-02-12 22:58

Sign up form with flutter

I\'m trying to build an app front end with flutter and it\'s my first time so I faced some bugs like this one: there is no way to edit my textf

6条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-12 23:29

    You have the following code in your build function:

    final formKey = GlobalKey();
    

    This is the problem. You have to either make it static or move to initState()

提交回复
热议问题