Answers for "flutter card return a renderflex overflowed by 110 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

Code answers related to "flutter card return a renderflex overflowed by 110 pixels on the bottom"

Browse Popular Code Answers by Language