implemented: image_from_network example

updated: anim gif
This commit is contained in:
Nishant Srivastava
2018-03-15 11:29:34 +05:30
parent 74de420478
commit 42ee82b850
2 changed files with 12 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -11,9 +11,18 @@ class MyApp extends StatelessWidget {
title: new Text("Image from Network"),
),
body: new Container(
child: new Center(child: new Text("Hello World")),
),
child: new Column(
children: <Widget>[
// Load image from network
new Image.network(
'https://github.com/nisrulz/flutter-examples/raw/develop/image_from_network/img/flutter_logo.png'),
// even loads gifs
// Gif image from Giphy, all copyrights are owned by Giphy
new Image.network(
'https://github.com/nisrulz/flutter-examples/raw/develop/image_from_network/img/loop_anim.gif'),
],
)),
),
);
}
}
}