提高flutter中使用google账号登录后google账号图片的质量

moh*_*edi 1 google-account flutter

当我使用他的谷歌帐户获取登录用户的图像时,我从他的谷歌帐户获取的图像质量很差。

那么如何提高我从用户谷歌帐户获得的图像的质量?

我使用谷歌帐户获取用户登录的图像,如下所示:

 final GoogleSignInAuthentication googleSignInAuthentication =
            await googleSignInAccount.authentication;

        final token = googleSignInAuthentication;
// her i use this statement to take the google account image :  
              userImageUrl = googleSignInAccount.photoUrl
            
Run Code Online (Sandbox Code Playgroud)

Nif*_*zar 6

尝试下面的代码

userImageUrl = googleSignInAccount.photoUrl.replaceAll("s96-c", "s192-c");
Run Code Online (Sandbox Code Playgroud)