본문 바로가기
반응형

Firestore3

[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.
[Solved][firebase] error FirebaseError: Firebase Storage: User does not have permission to access '*******'. (storage/unauthorized) 해결방법 [Solved][firebase] 해결방법 error FirebaseError: Firebase Storage: User does not have permission to access '*******'. (storage/unauthorized) Firebase storage의 내용을 read할때 발생하는 오류이다. 이 오류는 권한이 없는 유저가 storage의 내용을 읽고자 할 때 발생하므로 아래와 같이 Storage - Rules의 내용을 수정하자. [English](This error occurs when reading the contents of Firebase storage. This error occurs when an unauthorized user tries to read the conten.. 2022. 9. 3.
[flutter][firebase] How to sign up/login/logout/leave membership for Google (sample code) (구글 회원가입/로그인/로그아웃/회원탈퇴 방법 (샘플코드)) [flutter][firebase] How to sign up/login/logout/leave membership for Google (sample code) (구글 회원가입/로그인/로그아웃/회원탈퇴 방법 (샘플코드)) 구글 소셜로그인을 이용하면 플러터에서도 쉽게 회원관리 기능을 구현할 수 있습니다. 구글에서 제공하는 가이드 (flutter dart 기준이 아니라 조금 더 구글링이 필요했음) https://firebase.google.com/docs/auth/unity/manage-users?hl=ko Firebase에서 사용자 관리하기 | Firebase Documentation Catch up on everthing we announced at this year's Firebase Summit. L.. 2021. 11. 30.
반응형