Answers for "a renderflex overflowed by 193 pixels on the bottom."

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 "a renderflex overflowed by 193 pixels on the bottom."

Browse Popular Code Answers by Language