Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

flutter column in listview not working

The column and listview has an unbounded height, so use the listview to display horizontally or wrap it in a container with a specified height ;) You go this!
Column(
  children: <Widget>[
    Expanded(
      child: horizontalList,
    )
  ],
);
 
PREVIOUS NEXT
Tagged: #flutter #column #listview #working
ADD COMMENT
Topic
Name
7+1 =