updated readme of each example with a screenshot/gif and more details about the example.

added more comments to code
This commit is contained in:
Nishant Srivastava
2017-08-26 18:08:28 -07:00
parent defc273b1e
commit b526955129
28 changed files with 134 additions and 51 deletions

View File

@ -1,8 +1,10 @@
# load_local_image
# Load Local Image
Example app showing implementation which loads up an image from a local folder.
<img src="demo_img.jpg" height="600em" />
A new Flutter project.
## Getting Started
For help getting started with Flutter, view our online
[documentation](http://flutter.io/).
For help getting started with Flutter, view online [documentation](http://flutter.io/).

BIN
load_local_image/demo_img.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

View File

@ -15,7 +15,10 @@ class MyApp extends StatelessWidget {
),
body: new Container(
child: new Center(
child: new Text("Hellow World!"),
child: new Text(
"Hello World!",
style: new TextStyle(color: Colors.white),
),
),
// Set the image as the background of the Container
decoration: new BoxDecoration(