Keyboard disappearing when focussing on TextFormField flutter
This happens when you put GlobalKey<FormState> in your build function
Try with static or add inside initState ... _formKey ...
static GlobalKey<FormState> _formKey = new GlobalKey<FormState>();
Currently the key is recreated every time _LoginState is rebuilt, which defeats
it's purpose.