flutter/examples/layers
Michael Thomsen 5cec108023 Roll android build tools to 25.0.3 (#9922)
* Roll android build tools to 25.0.3

* Roll android build tools to 25.0.3 in templates
2017-05-09 18:58:46 +02:00
..
.idea add Dart_SDK project library to examples that don't have them (#9847) 2017-05-05 19:14:58 -07:00
android Roll android build tools to 25.0.3 (#9922) 2017-05-09 18:58:46 +02:00
ios Remove Pods dir from examples that have it (#9550) 2017-04-24 18:38:44 +02:00
raw Move Point to Offset (#9277) 2017-04-12 15:06:12 -07:00
rendering BoxDecoration API changes: backgroundColor -> color et al (#9648) 2017-04-27 14:19:01 -07:00
services BoxDecoration API changes: backgroundColor -> color et al (#9648) 2017-04-27 14:19:01 -07:00
test Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07:00
widgets BoxDecoration API changes: backgroundColor -> color et al (#9648) 2017-04-27 14:19:01 -07:00
.gitignore Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07:00
layers.iml IntelliJ metadata cleanup (flutter-intellij#914). (#9427) 2017-04-17 13:42:31 -07:00
pubspec.yaml Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07:00
README.md Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07: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, specify the demo file on the flutter run command line, for example:

flutter run raw/spinning_square.dart
flutter run rendering/spinning_square.dart
flutter run widgets/spinning_square.dart