flutter/examples/layers
Adam Barth d5b2e2a01c [rename fixit] Flex alignments
* justifyContent -> mainAxisAlignment
* alignItems -> crossAxisAlignment
* FlexJustifyContent -> MainAxisAlignment
* FlexAlignItems -> CrossAxisAlignment

Fixes #231
2016-03-12 18:33:47 -08:00
..
raw Drop the argument to SceneBuilder's constructor 2016-03-08 14:17:01 -08:00
rendering [rename fixit] Flex alignments 2016-03-12 18:33:47 -08:00
services [rename fixit] *Component* -> *Widget* 2016-03-12 12:34:05 -08:00
widgets [rename fixit] Flex alignments 2016-03-12 18:33:47 -08: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