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

Lines changed: 6 additions & 4 deletions
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/).
524 KB
Loading

grid_layout/README.md

Lines changed: 6 additions & 4 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 6 additions & 4 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 6 additions & 4 deletions
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

0 commit comments

Comments
 (0)