flutter/examples/layers
2016-10-25 12:20:02 -07:00
..
android Set windowSoftInputMode=adjustResize in example apps that were missing it (#6312) 2016-10-13 14:45:27 -07:00
raw Engine roll with updates to the ParagraphBuilder constructor (#6528) 2016-10-25 12:20:02 -07:00
rendering Turn off AnimationControllers when not in use (#5902) 2016-09-26 10:57:10 -07:00
services Remove use of activity.mojom (#6317) 2016-10-13 15:16:54 -07:00
test Fix dependency skew. (#3306) 2016-04-13 13:53:39 -07:00
widgets Have the scale gesture callback uses details objects (#6204) 2016-10-04 12:44:36 -07:00
flutter.yaml Add an example demonstrating use of isolates (#3347) 2016-04-15 16:31:23 -07:00
pubspec.yaml Use SDK sources to refer to our own packages (#6001) 2016-09-22 20:39:35 -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