작성
·
363
0
Widget _fetchData(BuildContext context) {
return StreamBuilder<QuerySnapshot>(
stream: FirebaseFirestore.instance.collection('movie').snapshots(),
builder: (context, snapshot){
if (!snapshot.hasData) return LinearProgressIndicator();
return _buildBody(context, snapshot.data.documents); }
);
}
여기에서 documents 가 오류가 되네요... 해결 방법이 있을까요?
답변 1
1
저도 같은 오류가 발생하는데 해결되면 공유할게요>>>
pubspec.yaml 파일가서 아래와 같이 수정해주었어요
버전 때문에 발생하는 오류같네요
감사합니다.