为列表中的每个项目创建一个新卡

时间:2020-08-15 20:04:22

标签: flutter

如何为交叉部分列表中的每个项目创建新卡片?

ListView(
          children: dummyCategories
              .map(
                (measurementData) => new DataCard(
                  measurementData.crossSections[0].id,
                  measurementData.crossSections[0].depth,
                  measurementData.crossSections[0].waterVelocities,
                ),
              )
              .toList(),
        ),

1 个答案:

答案 0 :(得分:0)

您可以使用list.generate(...)代替孩子的[]。

并根据需要对其进行自定义