Skip to content

Commit dbceabc

Browse files
committed
updated: readme with demo gifs and proper information
1 parent 473fe65 commit dbceabc

File tree

14 files changed

+34
-21
lines changed

14 files changed

+34
-21
lines changed

enabling_splash_screen/README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# enabling_splash_screen
1+
# Enabling Splash Screen
2+
3+
Example app showing implementing splash screen.
4+
5+
<img src="demo_img.gif" height="600em" />
26

3-
Splash screen in a flutter project
47

58
## Getting Started
69

7-
For help getting started with Flutter, view our online
8-
[documentation](http://flutter.io/).
10+
For help getting started with Flutter, view online [documentation](http://flutter.io/).

enabling_splash_screen/demo_img.gif

524 KB
Loading

grid_layout/README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# grid_layout
1+
# Grid Layout
2+
3+
Example app showing implementing grid layout.
4+
5+
<img src="demo_img.gif" height="600em" />
26

3-
Using Grid Layout in Flutter app
47

58
## Getting Started
69

7-
For help getting started with Flutter, view our online
8-
[documentation](http://flutter.io/).
10+
For help getting started with Flutter, view online [documentation](http://flutter.io/).

grid_layout/demo_img.gif

625 KB
Loading

grid_layout/lib/main.dart

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class MyApp extends StatelessWidget {
99
@override
1010
Widget build(BuildContext context) {
1111
return new MaterialApp(
12+
debugShowCheckedModeBanner: false,
1213
home: new Scaffold(
1314
appBar: new AppBar(
1415
// Here we take the value from the MyHomePage object that was created by

navigation_drawer/README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# navigation_drawer
1+
# Navigation Drawer
2+
3+
Example app showing implementing navigation Drawer.
4+
5+
<img src="demo_img.gif" height="600em" />
26

3-
Navigation Drawer Implementation
47

58
## Getting Started
69

7-
For help getting started with Flutter, view our online
8-
[documentation](http://flutter.io/).
10+
For help getting started with Flutter, view online [documentation](http://flutter.io/).

navigation_drawer/demo_img.gif

1.07 MB
Loading

navigation_drawer/lib/main.dart

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import 'package:navigation_drawer/screens/settings.dart';
55

66
void main() {
77
runApp(new MaterialApp(
8+
debugShowCheckedModeBanner: false,
89
home: new HomeScreen(), // route for home is '/' implicitly
910
routes: <String, WidgetBuilder>{
1011
// define the routes

using_listview/README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# using_listview
1+
# Using Listview
2+
3+
Example app showing implementing listview.
4+
5+
<img src="demo_img.gif" height="600em" />
26

3-
A new Flutter project.
47

58
## Getting Started
69

7-
For help getting started with Flutter, view our online
8-
[documentation](http://flutter.io/).
10+
For help getting started with Flutter, view online [documentation](http://flutter.io/).

using_listview/demo_img.gif

1000 KB
Loading

using_listview/lib/main.dart

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import 'package:using_listview/contact_page.dart';
33

44
void main() {
55
runApp(new MaterialApp(
6+
debugShowCheckedModeBanner: false,
67
home: new Scaffold(
78
appBar: new AppBar(
89
title: new Text("Using Listview"),

using_snackbar/README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# using_snackbar
1+
# Using SnackBar
2+
3+
Example app showing implementing snack bar.
4+
5+
<img src="demo_img.gif" height="600em" />
26

3-
Sanck bar implementation in Flutter
47

58
## Getting Started
69

7-
For help getting started with Flutter, view our online
8-
[documentation](http://flutter.io/).
10+
For help getting started with Flutter, view online [documentation](http://flutter.io/).

using_snackbar/demo_img.gif

243 KB
Loading

using_snackbar/lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:flutter/material.dart';
22

33
void main() {
4-
runApp(new MaterialApp(home: new ContactPage()));
4+
runApp(new MaterialApp(home: new ContactPage(), debugShowCheckedModeBanner: false,));
55
}
66

77
class ContactPage extends StatelessWidget {

0 commit comments

Comments
 (0)