Answers for "does this error "a renderflex overflowed by 15 pixels on the bottom" comes in release as well"

3

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 "does this error "a renderflex overflowed by 15 pixels on the bottom" comes in release as well"

Browse Popular Code Answers by Language