인프런 커뮤니티 질문&답변

허명도님의 프로필 이미지
허명도

작성한 질문수

Flutter + Firebase로 넷플릭스 UI 클론 코딩하기 [무작정 플러터]

플러터와 파이어베이스 연동하기 - 2) 플러터 코드 작성하기

fire base core 오류???

작성

·

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 파일가서 아래와 같이 수정해주었어요

cloud_firestore^0.12.9+5
firebase_core^0.4.0+9

버전 때문에 발생하는 오류같네요

감사합니다.

허명도님의 프로필 이미지
허명도

작성한 질문수

질문하기