Hi I am trying to create login screen. It is working fine for me. When I open the keyboard then it is giving me an error Bottom overloaded by 213 pixels.
Bottom overloaded by 213 pixels
Scaffold( resizeToAvoidBottomInset: false, // set it to false ... )
As Andrey said, you may have issues with scrolling, so you may try
Scaffold( resizeToAvoidBottomInset: false, // set it to false body: SingleChildScrollView(child: YourBody()), )