使用[this]包登录会导致以下行为。我认为屏幕变暗是预料之中的,但是问题出在不优雅的离开。
我没有收到错误消息。但这出现在控制台上。
W/ActivityThread(31387): handleWindowVisibility: no activity for token android.os.BinderProxy@a1edd0f
我的代码是该插件的推荐代码。
void loginWithGoogle() async {
var auth = AuthProvider.of(context).auth;
print('Signing up with google...');
setState(() {
_showProgressIndicator = true;
});
FirebaseUser user = await auth.signInWithGoogleAcc();
uId = user.uid;
if (uId != null) {
print('Signed in: $uId');
widget.onSignedIn(user);
} else {
print('google login cancelled...');
}
setState(() {
_showProgressIndicator = false;
});
}
这是在Android设备上发生的。