0

Googleサインインを使用してユーザーを作成し、Googleアカウントの表示写真と表示名を使用したいので、firebaseからdisplayName name photoUrlを取得しようとしています。

child: ListTile(
              title: Text("${user.displayName}"),
              subtitle: Text("${user.username}"),
              leading: CachedNetworkImage(
                imageUrl: user.photoUrl,
                placeholder: (context, url) => circularProgress(),
              ),
            ),

ここに画像の説明を入力

ここに画像の説明を入力

4

2 に答える 2