xxxxxxxxxx
just wrap the widget with "Expanded"
Column(
children: [
Expanded(
child: Container(
child: ..
)
)
]
)
xxxxxxxxxx
just wrap the body with `SingleChildScrollView` or `ListView`
body: SingleChildScrollView(
child: <Widget> ,
)
xxxxxxxxxx
[Solved] Flutter: How to fix “A RenderFlex overflowed by pixels ” error?