Home > Net >  A RenderFlex overflowed bottom flutter
A RenderFlex overflowed bottom flutter

Time:02-10

when I run the project it shows A RenderFlex overflowed on the bottom enter image description here A RenderFlex overflowed by 6.7 pixels on the bottom.

CodePudding user response:

In your Scaffold, set resizeToAvoidBottomInset property to false.

CodePudding user response:

Try below code hope its helpful to you. add your Column inside SingleChildScrollView

Refer my answer here also

SingleChildScrollView(
   child:Column(
     children:[
      //Declare Your Widgets Here
     ],
   ),
),

CodePudding user response:

When the kayboard appears, it may hide something. To avoid this problem, you can wrap the entire screen widget in a SingleChildScrollView. This will mate the screen scrollable.

  •  Tags:  
  • Related