flutter/examples
Matt Perry fdb76da5c9 Remove default horizontal padding for Input. (#6437)
This partially reverts https://github.com/flutter/flutter/issues/626 ,
but horizontal padding is not in the spec, so we still match the spec.
2016-10-20 16:38:09 -04:00
..
flutter_gallery Remove default horizontal padding for Input. (#6437) 2016-10-20 16:38:09 -04:00
hello_services Update examples to Xcode 8 recommended settings 2016-09-26 15:04:07 -07:00
hello_world More automated edits of iml files 2016-10-14 21:57:28 -07:00
layers Remove use of activity.mojom (#6317) 2016-10-13 15:16:54 -07:00
stocks Set windowSoftInputMode=adjustResize in example apps that were missing it (#6312) 2016-10-13 14:45:27 -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.