the element type 'List' can't be assigned to the list type 'Widget'

前端 未结 4 1158
死守一世寂寞
死守一世寂寞 2021-02-05 03:19

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,
         


        
4条回答
  •  旧时难觅i
    2021-02-05 03:56

    Here you are wrapping a list as list

    children: [getList()],
    

    This should rather be

    children: getList(),
    

提交回复
热议问题