Skip to content

Instantly share code, notes, and snippets.

@Shubham-Narkhede
Last active December 11, 2019 04:47
Show Gist options
  • Save Shubham-Narkhede/5800b02357b50a47b97872282f6df9b5 to your computer and use it in GitHub Desktop.
Save Shubham-Narkhede/5800b02357b50a47b97872282f6df9b5 to your computer and use it in GitHub Desktop.
showMyData(){
Column(
children: <Widget>[
Text(“Logged in as: ${myFacebookData[‘name’]}”),
Container(
height: 200.0,
width: 200.0,
decoration: BoxDecoration(
shape: BoxShape.circle,
image: DecorationImage(
fit: BoxFit.fill,
image: NetworkImage(
myFacebookData['picture']['data']['url'],
),
),
),
)
])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment