1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 12:39:17 +00:00

updated: readme with demo gifs and proper information

This commit is contained in:
Nishant Srivastava
2018-02-10 21:49:54 +05:30
parent 473fe65769
commit dbceabc186
14 changed files with 34 additions and 21 deletions

View File

@@ -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/).

BIN
using_snackbar/demo_img.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

View File

@@ -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 {