Last active
December 11, 2019 04:47
-
-
Save Shubham-Narkhede/5800b02357b50a47b97872282f6df9b5 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
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