flutter/examples
Adam Barth 0975d04972 Remove media service example (#6264)
This example is misleading because it relies on the old services model.
Let's remove it until #6263 is fixed.
2016-10-10 20:14:34 -07:00
..
flutter_gallery Run dartfmt on a few of the gallery example files (#6260) 2016-10-10 20:04:07 -07:00
hello_services Update examples to Xcode 8 recommended settings 2016-09-26 15:04:07 -07:00
hello_world add run configurations (#6243) 2016-10-07 13:03:52 -07:00
layers Remove media service example (#6264) 2016-10-10 20:14:34 -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 Update README.md 2016-09-30 13:57:39 -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+new+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.