flutter/examples/layers
Ian Hickson 552896afb7 Refactor cassowary so it uses imports rather than parts.
Also misc cleanup:
 - reorder members to be more consistent and fit the style guide
 - remove use of _Pair
 - made Variable.applyUpdate and Variable.owner public
 - added docs to Priority, tweaked the code a bit
 - added some docs to Result
 - removed the internal-error Result (replaced with asserts)
 - removed unused Results
 - made Result const
 - merged some files together since they had used privates a lot

I'm sorry this is completely unreviewable. I did the move from `lib/*`
to `lib/src/*` first, then did the `part`-to-`import` change, and then
found out how many of the files involved privates, which I wasn't
expecting. I can redo this as multiple commits if that would make it
easier to review.
2016-03-20 18:10:37 -07:00
..
android Stop using a prebuilt APK 2016-03-14 13:32:00 -07:00
raw Use Canvas#drawParagraph 2016-03-17 13:45:35 -07:00
rendering Refactor cassowary so it uses imports rather than parts. 2016-03-20 18:10:37 -07:00
services Add @override annotations to flutter framework 2016-03-14 14:02:26 -07:00
widgets Refactor cassowary so it uses imports rather than parts. 2016-03-20 18:10:37 -07:00
pubspec.yaml Clean up the standalone examples 2016-02-13 11:00:58 -08: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