flutter/examples/layers
Adam Barth c7d71d8ab1 Simplify the AutoLayout API
This patch makes it easier to use the auto layout API:

* We no longer use operator== because that requires an ugly cast by the
  API user.
* Also, "leftEdge" is now just "left" for less verbosity.
* AutoLayoutChild not implies its key from the AutoLayoutParam object.
* We now correctly layout every child of a RenderAutoLayout object even
  if the solver doesn't flush any updates to that child.
2016-02-15 15:25:21 -08:00
..
raw Add a raw hello_world that shows "Hello, world" 2016-02-13 16:51:00 -08:00
rendering Simplify the AutoLayout API 2016-02-15 15:25:21 -08:00
widgets Simplify the AutoLayout API 2016-02-15 15:25:21 -08:00
pubspec.yaml Clean up the standalone examples 2016-02-13 11:00:58 -08:00
README.md Clean up the standalone examples 2016-02-13 11:00:58 -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.

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

flutter start -t widgets/spinning_square.dart