Created
May 26, 2021 19:36
-
-
Save PeterHdd/8272218a02e71a1fc33de01419cd317e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body: Center( | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: <Widget>[ | |
Text(user!.email!), | |
Text(user!.displayName!), | |
CircleAvatar( | |
backgroundImage: NetworkImage(user!.photoURL!), | |
radius: 20, | |
) | |
], | |
))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment