I am designing a login page it overflowed when I click on any text form field it open keyboard and through overflow warning like this see a
An even easier version is to just wrap the offending container with a ListView widget. It makes the screen scrollable and is simple to implement. You can use multiple children with this widget.
Scaffold( body: ListView( children: [ Container( ), TextView( ), Column( ), ], ), )