README.md 938 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 a sample with the `flutter` tool, run `pub get` inside its directory,
8
then run `flutter run`. (See the
Seth Ladd's avatar
Seth Ladd committed
9
[getting started guide](https://flutter.io/getting-started/) to install
10 11 12 13
the `flutter` tool.)

Available examples include:

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

17
- **Stocks** The [stocks app](stocks) is an example of a typical mobile app
18
   built using Flutter. The app shows a list of all the stocks in the NASDAQ.
19

20
- **Widgets** The [widget apps](widgets) demonstrate a number of Flutter widgets
21 22
   so you can experiment with them in a simple container. There is no main.dart
   in this directory because each file is a standalone sample. To run a
23
   particular file, use `flutter run -t filename.dart`.