我有这个json
结构
"abc":{
current_checklist:[
{
....
},
{
"sections":[
...
]
},
{
...
}
]
}
我想使用ListView
,其中itemCount
基于节。我应该怎么写?Widget _displayCheckList(ABCData abcData) {
return ListView.builder(
physics: NeverScrollableScrollPhysics(),
shrinkWrap: true,
itemCount:
abcData.abc.currentChecklist.???,length, // how to get the "sections" length?
itemBuilder: (context, index) {
return Text("Hello");
},
);
}
}
最佳答案
看到一些有效的示例json数据会很好。
您是否尝试过类似的方法:
abcData.abc.currentChecklist[0].sections or
abcData.abc.currentChecklist[1].sections
关于list - 从列表中获取itemCount,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/64630728/