flutter/examples/layers
Fedor Korotkov 7333459916 Configure Cirrus CI (#16224)
* Configure Cirrus CI

* Read file directly instead of shelling a command

* Wait for all streams to finish

* Add LTR `textDirection`

Since `RenderFlex#_debugHasNecessaryDirections` requires it when `direction` is horizontal and there are multiple children.
2018-05-01 15:11:21 -07:00
..
android Update AndroidManifest to include screenLayout|density in config changes (#15871) 2018-03-24 12:38:42 -07:00
ios Remove generated files from repo (#14697) 2018-02-16 12:33:21 +01:00
lib TextPainter RTL (#11888) 2017-09-07 16:57:38 -07:00
raw Use Dart 2 camel case constants (#15360) 2018-03-12 11:06:32 -07:00
rendering Configure Cirrus CI (#16224) 2018-05-01 15:11:21 -07:00
services Use Dart 2 camel case constants (#15360) 2018-03-12 11:06:32 -07:00
test enable lint avoid_relative_lib_imports (#15780) 2018-03-22 07:56:18 +01:00
widgets Use Dart 2 camel case constants (#15360) 2018-03-12 11:06:32 -07:00
pubspec.yaml Update dependencies (#16442) 2018-04-10 14:27:53 -07:00
README.md Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07: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, specify the demo file on the flutter run command line, for example:

flutter run raw/spinning_square.dart
flutter run rendering/spinning_square.dart
flutter run widgets/spinning_square.dart