flutter/examples/layers
Phil Quitslund a8cd212575 Add example IntelliJ metadata (flutter-intellij#607). (#7428)
* Add example IntelliJ metadata (flutter-intellij#607).

Ensures example projects open cleanly out-of-the-box w/ the Flutter Plugin.

See: https://github.com/flutter/flutter-intellij/issues/607.

* Fixed IML files.
2017-01-11 17:37:30 -08:00
..
.idea Add example IntelliJ metadata (flutter-intellij#607). (#7428) 2017-01-11 17:37:30 -08:00
android rename Sky to Flutter and add clarifying comment to template (#7165) 2016-12-06 16:03:32 -08:00
raw Add support for pointer hover (#6884) 2016-11-15 21:13:37 -08:00
rendering Remove package:flutter/cassowary.dart (#7350) 2017-01-05 13:08:43 -08:00
services Remove use of activity.mojom (#6317) 2016-10-13 15:16:54 -07:00
test Fix dependency skew. (#3306) 2016-04-13 13:53:39 -07:00
widgets Remove package:flutter/cassowary.dart (#7350) 2017-01-05 13:08:43 -08:00
flutter.yaml Add an example demonstrating use of isolates (#3347) 2016-04-15 16:31:23 -07:00
layers.iml Add example IntelliJ metadata (flutter-intellij#607). (#7428) 2017-01-11 17:37:30 -08:00
pubspec.yaml Refactor flutter command exit code - part 3 of 3 (#6838) 2016-11-14 14:21:30 -05:00
README.md Remove //examples/widgets 2016-03-08 16:37:32 -08:00

Examples of Flutter's layered architecture

This directory contains a number of self-contained examples that illustrate Flutter's layered architecture.

  • raw/ These examples show how to program against the lowest layer of the system. They manually receive input packets and construct composited scenes.

  • rendering/ These examples use Flutter's render tree to structure your app using a retained tree of visual objects. These objects coordinate to determine their size and position on screen and to handle events.

  • widgets/ These examples use Flutter's widgets to build more elaborate apps using a reactive framework.

  • services/ These examples use services available in Flutter to interact with the host platform.

To run each example, use the -t argument to the flutter tool:

flutter run -t widgets/spinning_square.dart