Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/114.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Can';"t show",;选择“帐户”;在Flitter ios应用程序中的谷歌登录表单_Ios_Flutter_Google Signin - Fatal编程技术网

Can';"t show",;选择“帐户”;在Flitter ios应用程序中的谷歌登录表单

Can';"t show",;选择“帐户”;在Flitter ios应用程序中的谷歌登录表单,ios,flutter,google-signin,Ios,Flutter,Google Signin,有人能帮忙吗 我在我的应用程序中集成了谷歌登录,所有的工作都很好,但我总是在auth弹出窗口中获得“电子邮件密码”表单,尽管我有很多谷歌帐户。在其他应用程序中,此帐户显示 代码 我明白了 我想知道你找到解决方案了吗?你找到解决方案了吗? GoogleSignIn _googleSignIn = GoogleSignIn( scopes: [ 'email', 'https://www.googleapis.com/auth/contacts.readonly',

有人能帮忙吗

我在我的应用程序中集成了谷歌登录,所有的工作都很好,但我总是在auth弹出窗口中获得“电子邮件密码”表单,尽管我有很多谷歌帐户。在其他应用程序中,此帐户显示

代码

我明白了


我想知道

你找到解决方案了吗?你找到解决方案了吗?
GoogleSignIn _googleSignIn = GoogleSignIn(
    scopes: [
      'email',
      'https://www.googleapis.com/auth/contacts.readonly',
    ],
  );

  Future<void> _handleSignIn() async {
    try {
      GoogleSignInAccount account = await _googleSignIn.signIn();
      print(account.email);
      print(account.id);
      print(account.displayName);
    } catch (error) {
      print(error);
    }
  }
google_sign_in: ^4.0.14