Skip to content

Instantly share code, notes, and snippets.

@PeterHdd
Created May 26, 2021 19:36
Show Gist options
  • Save PeterHdd/8272218a02e71a1fc33de01419cd317e to your computer and use it in GitHub Desktop.
Save PeterHdd/8272218a02e71a1fc33de01419cd317e to your computer and use it in GitHub Desktop.
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