最佳答案
我有一个代码片段,我从 Firestore 例子中复制了它:
Widget _buildBody(BuildContext context) {
return new StreamBuilder(
stream: _getEventStream(),
builder: (context, snapshot) {
if (!snapshot.hasData) return new Text('Loading...');
return new ListView(
children: snapshot.data.documents.map((document) {
return new ListTile(
title: new Text(document['name']),
subtitle: new Text("Class"),
);
}).toList(),
);
},
);
}
但我得到了这个错误
type 'List<dynamic>' is not a subtype of type 'List<Widget>'
这里出了什么问题?