Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ScottS2017/8a5ee331c81e8bc990c18044435bcd5c to your computer and use it in GitHub Desktop.

Select an option

Save ScottS2017/8a5ee331c81e8bc990c18044435bcd5c to your computer and use it in GitHub Desktop.
Widget brokenCodeRenderFlexError =
Column(
// A Column's default is "mainAxisSize: MainAxisSize.max,"
// This means it will try to take all the height it's allowed to.
children: <Widget>[
// The container is trying to be infinitely large.
Container(
height: double.infinity,
color: Colors.green,
),
],
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment