我现在正试图编写一个类似于Quiz的应用程序以学习此框架。
我已经实现了Firebase Firestore来管理应用程序数据。 从这些flutter plugin文档中,我了解了将CollectionReference绑定到ListView的过程,这非常容易。
我的问题如下。 我要在首页中显示一些类别,我希望用户能够选择他想要的类别,然后将该信息存储在列表中。
使用此代码,我可以显示列表:
@override
Widget build(BuildContext context) {
return StreamBuilder<QuerySnapshot>(
stream: Firestore.instance.collection('Categorie').snapshots(),
builder: (BuildContext context, AsyncSnapshot<QuerySnapshot> snapshot) {
if (snapshot.hasError) return new Text('Error: ${snapshot.error}');
switch (snapshot.connectionState) {
case ConnectionState.waiting:
return new Center(
child: Column(
children: <Widget>[
SizedBox(
child: CircularProgressIndicator(),
height: 50.0,
width: 50.0,
),
Text('Dowload delle categorie...')
],
),
);
default:
_loadListOfCategories(snapshot);
return new ListView(
children:
snapshot.data.documents.map((DocumentSnapshot document) {
var nome = document['Nome'];
print('doc: $nome');
return new CategoryWidget(
id: document.documentID,
tap: onCategoryTap,
nome: document['Nome'],
count: document['Count'],
checked: false,
);
}).toList(),
);
}
},
);
}
CategoryWidget只是一个简单的无状态小部件,它充当ListTile。
结果如下:
现在,如何保存完整的类别模型列表,其中一个实现了“选中/未选中”属性,如何保存此列表?
我尝试在构建器中完全使用“ _loadListOfCategories()”方法:
void _loadListOfCategories(AsyncSnapshot<QuerySnapshot> snapshot) {
var temporalList = new List<CategoryModel>();
for (DocumentSnapshot doc in snapshot.data.documents) {
temporalList.add(new CategoryModel(
id: doc.documentID,
count: doc['Count'],
nome: doc['Nome']));
}
setState(() {
_listOfCategories = temporalList;
});
}
但是我不能在这里调用setState(),因为我实际上是在build方法内部。
答案 0 :(得分:0)
使用地图,您的密钥将为'document.documentID',其值为布尔值。
Map map = Map()//假定为字符串document.documentID
已选中:map.get(document.documentID), 在您的复选框中致电 setState()=> map.put(document.documentID,!map.get(document.documentID));