인프런 커뮤니티 질문&답변
google 계정 signOut이 제대로 되지 않습니다.
작성
·
216
답변 2
1
오준석
지식공유자
인프런에서 질문 메일이 갑자기 안 날아와서 답변이 늦었습니다.
위 코드와 같이 네비게이터를 작성하면 네비게이션이 꼬여서 로그아웃이 잘 안 됩니다. 코드 참고 하세요.
https://github.com/junsuk5/flutter_insta_clon
로그인
SignInButton(
Buttons.Google,
onPressed: () {
_handleSignIn().then((user) {
print(user);
});
},
),
로그아웃
IconButton(
icon: Icon(Icons.exit_to_app),
color: Colors.black,
onPressed: () {
FirebaseAuth.instance.signOut();
_googleSignIn.signOut();
},
)
0





