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

问题描述 投票:0回答:2

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

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

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

 final GoogleSignInAuthentication googleSignInAuthentication =
            await googleSignInAccount.authentication;

        final token = googleSignInAuthentication;
// her i use this statement to take the google account image :  
              userImageUrl = googleSignInAccount.photoUrl
            
flutter google-account
2个回答
7
投票

尝试以下代码

userImageUrl = googleSignInAccount.photoUrl.replaceAll("s96-c", "s192-c");

© www.soinside.com 2019 - 2024. All rights reserved.