Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ScottS2017/0babfc36c3c70da1259abe52208ae4e2 to your computer and use it in GitHub Desktop.
Save ScottS2017/0babfc36c3c70da1259abe52208ae4e2 to your computer and use it in GitHub Desktop.
final Widget render_constrained_box_object_was_given_an_infinite_size_during_layout =
Column(
children: <Widget>[
Row(
children: <Widget>[
Container(
child: SizedBox(
height: double.infinity,
),
),
],
),
],
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment