Listview Inside Column Flutter

[Solved] Listview Inside Column Flutter | Dart - Code Explorer | yomemimo.com
Question : listview inside column flutter

Answered by : worthy-warrior

new Column( children: <Widget>[ new Expanded( child: horizontalList, ) ],
);

Source : https://stackoverflow.com/questions/45669202/how-to-add-a-listview-to-a-column-in-flutter | Last Update : Tue, 24 Nov 20

Question : flutter Listview inside a column

Answered by : talha-riaz

Column( children: <Widget>[ Expanded( // <-- Use Expanded child: ListView(...), ) ],
)

Source : https://stackoverflow.com/questions/45669202/how-to-add-a-listview-to-a-column-in-flutter | Last Update : Sat, 21 May 22

Answers related to listview inside column flutter

Code Explorer Popular Question For Dart