강의

멘토링

커뮤니티

Inflearn Community Q&A

starguy's profile image
starguy

asked

Flutter App Development Basics

Connecting to a database

[스몰이슈] 오타? 확인 부탁 드려요

Resolved

Written on

·

367

2

											final docs = snapshot.data?.docs ?? []; // 문서들 가져오기

문서 가져 올때 docs로 선언을 했는대 마지막에 버킷리스트 없는 메세지에 대한 코드 스니펫에 오타가 있는 것 같아서 공유해요

 

                      if (documents.isEmpty) {
                        return Center(child: Text("버킷 리스트를 작성해주세요."));
                      }

 

documents.isEmpty -> doc.isEmpty로 변경

 

 

Flutter

Answer 2

2

DevStory님의 프로필 이미지
DevStory
Instructor

안녕하세요 김강민님

신고해주신 부분에 docs를 documents로 변경하였습니다.

상세한 오타 제보 감사합니다 ❤️

 

1

starguy님의 프로필 이미지
starguy
Questioner

starguy's profile image
starguy

asked

Ask a question