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

前端 未结 4 1147
死守一世寂寞
死守一世寂寞 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条回答
  • 2021-02-05 03:39

    There are two methods I found working.

    Method 1 - Simple

    This method is supported in the latest version of flutter

    var list = ["one", "two", "three", "four"]; 
    
    child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
              for(var item in list ) Text(item)
          ],
    ),
    

    Method 2 - A bit Complex

    Tested in Flutter 1.12.13+hotfix.7 and Dart 2.7.0, we can iterate over the list of objects as follows:

    Iterate over the list of objects

    ...data.map((f) => paragraph(f.title, f.description)).toList(),
    

    Custom widget

    Column paragraph(String title, String description) {
      return new Column(
        children: <Widget>[
          Container(
            child: Text(title),
          ),
          Container(
            child: Text(description),
          ),
        ],
      );
    }
    

    Data: List of objects

    List<AboutUsData> data = [
        new AboutUsData(
          title: 'Our Vision',
          description:
              'OUR VISION',
        ),
        new AboutUsData(
          title: 'Our Mission',
          description:
              'OUR MISSION',
        ),
        new AboutUsData(
          title: 'Our Values',
          description:
              'As we grow as a company',
        ),
      ];
    
    0 讨论(0)
  • 2021-02-05 03:49

    Since the answer was not satisfactory for me, so I found another solution.

    Flutter gives you the possibility to write conditions on a single line also in the graphic, so you can insert a cycle on a single line and then insert the other different widgets. This is a practical example in response to the main question:

     Column(
        children: <Widget>
          [
            for (int i = 0;
            i < workouts.series.length;
            i++)
              "//CREATE N YOUR WIDGETS//",
              new Text(
              "${workouts.series.length} x ${exerciseWorkout.repsToDo} ",
              style: TextStyle(
              color: Colors.black87,
              fontSize: 16,
              fontWeight: FontWeight.bold),
              )
          ],
         )
    
    0 讨论(0)
  • 2021-02-05 03:56

    Here you are wrapping a list as list

    children: <Widget>[getList()],
    

    This should rather be

    children: getList(),
    
    0 讨论(0)
  • 2021-02-05 03:57

    Just use spread operator:

    return new GridView.count(
        crossAxisCount: 2,
        padding: const EdgeInsets.all(10.0),
        crossAxisSpacing: 10.0,
        mainAxisSpacing: 10.0,
        children: <Widget>[...getList()],
    );
    
    0 讨论(0)
提交回复
热议问题