Guest User

Untitled

a guest
Feb 18th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. Row(
  2. children: addEntities(),
  3. ),
  4.  
  5. ListView(
  6. scrollDirection: Axis.horizontal,
  7. children: <Widget>[
  8. Row(
  9. children: addEntities(),
  10. ),
  11. ],
  12. ),
  13.  
  14. flutter: ══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
  15. flutter: The following assertion was thrown during performResize():
  16. flutter: Horizontal viewport was given unbounded width.
  17. flutter: Viewports expand in the scrolling direction to fill their container.In this case, a horizontal
  18. flutter: viewport was given an unlimited amount of horizontal space in which to expand. This situation
  19. flutter: typically happens when a scrollable widget is nested inside another scrollable widget.
  20. flutter: If this widget is always nested in a scrollable widget there is no need to use a viewport because
  21. flutter: there will always be enough horizontal space for the children. In this case, consider using a Row
  22. flutter: instead. Otherwise, consider using the "shrinkWrap" property (or a ShrinkWrappingViewport) to size
  23. flutter: the width of the viewport to the sum of the widths of its children.
Add Comment
Please, Sign In to add comment