File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import 'package:CipherPay/widgets/balance_card.dart';
77import 'package:CipherPay/widgets/card_slider.dart' ;
88import 'package:CipherPay/widgets/coin_card.dart' ;
99import 'package:CipherPay/widgets/coin_item.dart' ;
10+ import 'package:firebase_auth/firebase_auth.dart' ;
1011import 'package:flutter/material.dart' ;
1112
1213class HomePage extends StatefulWidget {
@@ -56,15 +57,15 @@ class _HomePageState extends State<HomePage> {
5657 SizedBox (
5758 height: 3 ,
5859 ),
59- Text ("User" ,
60+ Text (FirebaseAuth .instance.currentUser ! .displayName ! ,
6061 style: TextStyle (
6162 fontWeight: FontWeight .w600,
6263 fontSize: 18 ,
6364 )),
6465 ],
6566 )),
6667 AvatarImage (
67- "https://img.freepik.com/free-photo/abstract-grunge-decorative-relief-navy-blue-stucco-wall-texture-wide-angle-rough-colored-background_1258-28311.jpg?w=2000" ,
68+ FirebaseAuth .instance.currentUser ! .photoURL ! ,
6869 isSVG: false ,
6970 width: 35 ,
7071 height: 35 ,
@@ -136,3 +137,4 @@ class _HomePageState extends State<HomePage> {
136137}
137138
138139
140+
You can’t perform that action at this time.
0 commit comments