README.md 912 Bytes
Newer Older
1 2
Flutter Examples
================
3

4
This directory contains several examples of using Flutter. Each of these is an
5
individual Dart application package.
6

7
To run an example, use `flutter run` inside that example's directory.  See the
Seth Ladd's avatar
Seth Ladd committed
8
[getting started guide](https://flutter.io/getting-started/) to install
9
the `flutter` tool.
10 11 12

Available examples include:

13
- **Hello, world** The [hello world app](hello_world) is a basic app that shows
14
  the text "hello, world."
15

16
- **Flutter gallery** The [flutter gallery app](flutter_gallery) showcases
17
  Flutter's implementation of [material design](https://www.google.com/design/spec/material-design/introduction.html).
18

19 20 21 22
- **Layers** The [layers vignettes](layers) show how to use the various layers
  in the Flutter framework. There is no main.dart in this directory because each
  file is a standalone example. To run a particular file, use
  `flutter run -t filename.dart`.