firebase_auth 를 활용한 로컬 로그인
유저 상태 체크 : onAuthStateChanged auth 상태가 변경되는 것을 감지합니다. 아래와 같이 작성하면, 유저가 로그인 했을 때는 MainPage()를 안 했을 때는 AuthPage()를 보여줍니다. home: StreamBuilder( stream: FirebaseAuth.instance.onAuthStateChanged, builder: (context, snapshot) { if(snapshot.hasData) { return MainPage(); } return AuthPage(); } 로그인한 상태로 다시 앱에 진입할 때 깜빡거리는 것을 막기 위해서 처음인지 체크하고 처음이면 스피너를 돌립니다. 깜빡거리는 이유는 처음 앱을 실행했을 때는 firebase와 통신하기 전이기 때문에 n..