I am trying to add data using for loop in gridview but it is showing some error. Here is my code for component
return new GridView.count(
crossAxisCount: 2,
padding: const EdgeInsets.all(10.0),
crossAxisSpacing: 10.0,
mainAxisSpacing: 10.0,
children: <Widget>[getList()],
);
getList() code
List<Widget> getList() {
List<Widget> childs = [];
for (var i = 0; i < 10; i++) {
childs.add(new ListItem('abcd ' + $i));
}
return childs;
}
But it is showing compile time error.
The element type 'List<widget>' can't be assigned to the list type 'Widget'
question from:
https://stackoverflow.com/questions/50392607/the-element-type-listwidget-cant-be-assigned-to-the-list-type-widget 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…