diff --git a/enabling_splash_screen/README.md b/enabling_splash_screen/README.md
index d8c20f35..4ece990f 100644
--- a/enabling_splash_screen/README.md
+++ b/enabling_splash_screen/README.md
@@ -1,8 +1,10 @@
-# enabling_splash_screen
+# Enabling Splash Screen
+
+Example app showing implementing splash screen.
+
+
-Splash screen in a 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/).
\ No newline at end of file
diff --git a/enabling_splash_screen/demo_img.gif b/enabling_splash_screen/demo_img.gif
new file mode 100644
index 00000000..9e1cea97
Binary files /dev/null and b/enabling_splash_screen/demo_img.gif differ
diff --git a/grid_layout/README.md b/grid_layout/README.md
index 6413b853..9b4fed0e 100644
--- a/grid_layout/README.md
+++ b/grid_layout/README.md
@@ -1,8 +1,10 @@
-# grid_layout
+# Grid Layout
+
+Example app showing implementing grid layout.
+
+
-Using Grid Layout in Flutter app
## 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/).
\ No newline at end of file
diff --git a/grid_layout/demo_img.gif b/grid_layout/demo_img.gif
new file mode 100644
index 00000000..c2c83a9c
Binary files /dev/null and b/grid_layout/demo_img.gif differ
diff --git a/grid_layout/lib/main.dart b/grid_layout/lib/main.dart
index 7d0fcc60..836f35b7 100644
--- a/grid_layout/lib/main.dart
+++ b/grid_layout/lib/main.dart
@@ -9,6 +9,7 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
+ debugShowCheckedModeBanner: false,
home: new Scaffold(
appBar: new AppBar(
// Here we take the value from the MyHomePage object that was created by
diff --git a/navigation_drawer/README.md b/navigation_drawer/README.md
index 40bd48a0..5d61178c 100644
--- a/navigation_drawer/README.md
+++ b/navigation_drawer/README.md
@@ -1,8 +1,10 @@
-# navigation_drawer
+# Navigation Drawer
+
+Example app showing implementing navigation Drawer.
+
+
-Navigation Drawer Implementation
## 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/).
\ No newline at end of file
diff --git a/navigation_drawer/demo_img.gif b/navigation_drawer/demo_img.gif
new file mode 100644
index 00000000..04e0d8ec
Binary files /dev/null and b/navigation_drawer/demo_img.gif differ
diff --git a/navigation_drawer/lib/main.dart b/navigation_drawer/lib/main.dart
index 53303a58..5f15afae 100644
--- a/navigation_drawer/lib/main.dart
+++ b/navigation_drawer/lib/main.dart
@@ -5,6 +5,7 @@ import 'package:navigation_drawer/screens/settings.dart';
void main() {
runApp(new MaterialApp(
+ debugShowCheckedModeBanner: false,
home: new HomeScreen(), // route for home is '/' implicitly
routes: {
// define the routes
diff --git a/using_listview/README.md b/using_listview/README.md
index 6d692ec5..fb1dbcde 100644
--- a/using_listview/README.md
+++ b/using_listview/README.md
@@ -1,8 +1,10 @@
-# using_listview
+# Using Listview
+
+Example app showing implementing listview.
+
+
-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/).
\ No newline at end of file
diff --git a/using_listview/demo_img.gif b/using_listview/demo_img.gif
new file mode 100644
index 00000000..a63a32ce
Binary files /dev/null and b/using_listview/demo_img.gif differ
diff --git a/using_listview/lib/main.dart b/using_listview/lib/main.dart
index 08870c89..5b9a7dd9 100644
--- a/using_listview/lib/main.dart
+++ b/using_listview/lib/main.dart
@@ -3,6 +3,7 @@ import 'package:using_listview/contact_page.dart';
void main() {
runApp(new MaterialApp(
+ debugShowCheckedModeBanner: false,
home: new Scaffold(
appBar: new AppBar(
title: new Text("Using Listview"),
diff --git a/using_snackbar/README.md b/using_snackbar/README.md
index 8a1a5a39..f998596e 100644
--- a/using_snackbar/README.md
+++ b/using_snackbar/README.md
@@ -1,8 +1,10 @@
-# using_snackbar
+# Using SnackBar
+
+Example app showing implementing snack bar.
+
+
-Sanck bar implementation in Flutter
## 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/).
\ No newline at end of file
diff --git a/using_snackbar/demo_img.gif b/using_snackbar/demo_img.gif
new file mode 100644
index 00000000..1b3dfba5
Binary files /dev/null and b/using_snackbar/demo_img.gif differ
diff --git a/using_snackbar/lib/main.dart b/using_snackbar/lib/main.dart
index 1ad0c809..06477fd8 100644
--- a/using_snackbar/lib/main.dart
+++ b/using_snackbar/lib/main.dart
@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';
void main() {
- runApp(new MaterialApp(home: new ContactPage()));
+ runApp(new MaterialApp(home: new ContactPage(), debugShowCheckedModeBanner: false,));
}
class ContactPage extends StatelessWidget {