flutter/examples
Adam Barth 6469872abd Rename Container.align to alignment (#6116)
To match the Align widget (and several other widgets).

Fixes #6101
2016-09-28 11:17:04 -07:00
..
flutter_gallery Rename Container.align to alignment (#6116) 2016-09-28 11:17:04 -07:00
hello_services Update examples to Xcode 8 recommended settings 2016-09-26 15:04:07 -07:00
hello_world Update examples to Xcode 8 recommended settings 2016-09-26 15:04:07 -07:00
layers Fix globalToLocal and update spinning_mixed (#6035) 2016-09-28 01:06:32 -07:00
stocks Specialize AlertDialog and SimpleDialog (#6098) 2016-09-27 15:44:11 -07:00
.gitignore Add an example of an extensible iOS app (#4252) 2016-05-29 14:08:35 -07:00
README.md Add tip on how to query for examples of using specific classes in the samples. (#6103) 2016-09-27 14:39:15 -07:00

Flutter Examples

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

To run an example, use flutter run inside that example's directory. See the getting started guide to install the flutter tool.

Tip: To see examples of how to use a specific Flutter framework class, copy and paste a URL with this format in your browser. Replace foo with the classname you are searching for (for example, here's the query for examples of the AppBar class).

https://github.com/flutter/flutter/search?q=path%3Aexamples+foo

Available examples include:

  • Hello, world The hello world app is a basic app that shows the text "hello, world."

  • Flutter gallery The flutter gallery app showcases Flutter's implementation of material design.

  • Layers The layers vignettes 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.