Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ScottS2017/8a5ee331c81e8bc990c18044435bcd5c to your computer and use it in GitHub Desktop.
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>[
Container(
height: 300,
width: double.infinity,
color: Colors.red,
),
/// The next 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