Answers for "flutter column in listview not working"

0

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,
    )
  ],
);
Posted by: Guest on October-25-2021

Code answers related to "flutter column in listview not working"

Browse Popular Code Answers by Language