Answers for "flutter a renderflex overflowed by 30 pixels on the bottom on child view"

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 a renderflex overflowed by 30 pixels on the bottom on child view"

Browse Popular Code Answers by Language