반응형 snapshot2 [Solved][Flutter] Error: The getter 'docs' isn't defined for the type 'Object' [Solved][Flutter] Error: The getter 'docs' isn't defined for the type 'Object' 문제 상황 (Problem) StreamBuilder( stream: FirebaseFirestore.instance . . . ) 위 코드에서 에러가 발생한다. Error: The getter 'docs' isn't defined for the type 'Object' 해결 방법 (Solution) StreamBuilder를 StreamBuilder 로 변경하면 된다. StreamBuilder ( stream: FirebaseFirestore.instance . . . ) 2023. 7. 30. [flutter][firebase] How to sort data from snapshot taken from DB (DB에서 가져온 snapshot에서 데이터 정렬하는 방법) [flutter][firebase] How to sort data from snapshot taken from DB (DB에서 가져온 snapshot에서 데이터 정렬하는 방법) 앱을 만들때 firebase에서 데이터를 갖고 오고 싶다면 보통 FirebaseFirestore에서 인스턴스를 가져와 컬렉션, 도큐먼트에 접근한다. 이때 특정한 애트리뷰트에 대해 정렬하고 싶다면? 아래와 같이 orderBy를 사용하자. (If you want to get data from firebase when creating an app I usually get the instance from FirebaseFirestore Access to collections and documents. What if you want to .. 2021. 11. 4. 이전 1 다음 반응형