Answers for "A RenderFlex overflowed by 237 pixels on the bottom."

1

A RenderFlex overflowed by pixels on the bottom.

just wrap the body with `SingleChildScrollView` or `ListView`

body: SingleChildScrollView(
		child: <Widget> ...,
	)
Posted by: Guest on February-28-2021
0

A RenderFlex overflowed by 237 pixels on the bottom.

just wrap the widget with "Expanded"

Column(
 children: [
	Expanded(
      child: Container(
        child: .....
     )
   ) 
 ]
)
Posted by: Guest on July-16-2021

Code answers related to "A RenderFlex overflowed by 237 pixels on the bottom."

Browse Popular Code Answers by Language