Answers for "the following assertion was thrown during performresize(): horizontal viewport was given unbounded height."

3

Vertical viewport was given unbounded height.

ListView.builder(
    scrollDirection: Axis.vertical,
    shrinkWrap: true,
...
Posted by: Guest on August-26-2020
1

Vertical viewport was given unbounded height.

Column(
  children: <Widget>[
    ListView(
      shrinkWrap: true, // use this
    ),
  ],
)
Posted by: Guest on August-26-2020

Code answers related to "the following assertion was thrown during performresize(): horizontal viewport was given unbounded height."

Browse Popular Code Answers by Language