Skip to content

Commit

Permalink
updated: readme with demo gifs and proper information
Browse files Browse the repository at this point in the history
  • Loading branch information
nisrulz committed Feb 10, 2018
1 parent 473fe65 commit dbceabc
Show file tree
Hide file tree
Showing 14 changed files with 34 additions and 21 deletions.
10 changes: 6 additions & 4 deletions enabling_splash_screen/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# enabling_splash_screen
# Enabling Splash Screen

Example app showing implementing splash screen.

<img src="demo_img.gif" height="600em" />

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/).
Binary file added enabling_splash_screen/demo_img.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 6 additions & 4 deletions grid_layout/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# grid_layout
# Grid Layout

Example app showing implementing grid layout.

<img src="demo_img.gif" height="600em" />

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/).
Binary file added grid_layout/demo_img.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions grid_layout/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 6 additions & 4 deletions navigation_drawer/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# navigation_drawer
# Navigation Drawer

Example app showing implementing navigation Drawer.

<img src="demo_img.gif" height="600em" />

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/).
Binary file added navigation_drawer/demo_img.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions navigation_drawer/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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: <String, WidgetBuilder>{
// define the routes
Expand Down
10 changes: 6 additions & 4 deletions using_listview/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# using_listview
# Using Listview

Example app showing implementing listview.

<img src="demo_img.gif" 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/).
Binary file added using_listview/demo_img.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions using_listview/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
10 changes: 6 additions & 4 deletions using_snackbar/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# using_snackbar
# Using SnackBar

Example app showing implementing snack bar.

<img src="demo_img.gif" height="600em" />

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/).
Binary file added using_snackbar/demo_img.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion using_snackbar/lib/main.dart
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit dbceabc

Please sign in to comment.