flutter/examples/layers
Ian Hickson 3eb87830e9 Constants! Constants everywhere! (#9286)
Aggressively apply the const lint.
2017-04-07 12:24:32 -07:00
..
.idea Update IJ files to match latest flutter create template (#9103) 2017-04-04 15:50:03 +02:00
android Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07:00
ios Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07:00
raw Declare locals final where not reassigned (layers) (#8572) 2017-03-03 18:04:27 -08:00
rendering Constants! Constants everywhere! (#9286) 2017-04-07 12:24:32 -07:00
services Constants! Constants everywhere! (#9286) 2017-04-07 12:24:32 -07:00
test Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07:00
widgets Constants! Constants everywhere! (#9286) 2017-04-07 12:24:32 -07:00
.gitignore Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07:00
layers.iml Revert back IntelliJ .iml file to project root (#8139) 2017-02-14 18:15:26 +01: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