flutter/examples/layers
James Robinson a95c9fdb58 Isolate imports of generated Dart code from generated path (#5960)
This rewrites imports of various mojom.dart files from the Flutter
engine repo to instead import normal-looking dart files from the
(new) flutter_services package. This package handles exporting the
correct symbols from generated code wherever that may live.

Includes an engine roll to 3551e7a48e2e336777b15c7637af92fd7605b6c5
which contains the new flutter_services package.
2016-09-21 14:00:29 -07:00
..
android Change the Android activity launch mode to singleTop (#3792) 2016-05-09 09:31:34 -07:00
raw Isolate imports of generated Dart code from generated path (#5960) 2016-09-21 14:00:29 -07:00
rendering Replaced FlexDirection with Axis. (#5896) 2016-09-15 15:23:37 -07:00
services Isolate imports of generated Dart code from generated path (#5960) 2016-09-21 14:00:29 -07:00
test Fix dependency skew. (#3306) 2016-04-13 13:53:39 -07:00
widgets Replaced FlexDirection with Axis. (#5896) 2016-09-15 15:23:37 -07:00
flutter.yaml Add an example demonstrating use of isolates (#3347) 2016-04-15 16:31:23 -07:00
pubspec.yaml Fix dependency skew. (#3306) 2016-04-13 13:53:39 -07: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