Flutter: keyboard disappears immediately when editing my text fields

后端 未结 6 632
醉酒成梦
醉酒成梦 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:24

    You should define all of the these:

      final scaffoldKey = GlobalKey();
      final formKey = GlobalKey();
      final TextEditingController _controller = new TextEditingController();
    

    as fields of the SignUp_Page not at build function.

提交回复
热议问题