flutter/examples/layers
2020-11-23 12:27:36 -08:00
..
android Revert "Migrate template to Gradle 6.7 and AGP 4.1.0 (#70808)" (#71096) 2020-11-23 12:27:36 -08:00
ios Move Flutter.framework to build directory instead of ios/Flutter (#70224) 2020-11-17 10:09:29 -08:00
lib License update (#45373) 2019-11-27 15:04:02 -08:00
raw Migrate all of examples/layers to sound null safety (#68744) 2020-10-22 13:33:07 -07:00
rendering Migrate all of examples/layers to sound null safety (#68744) 2020-10-22 13:33:07 -07:00
services Migrate all of examples/layers to sound null safety (#68744) 2020-10-22 13:33:07 -07:00
test License update (#45373) 2019-11-27 15:04:02 -08:00
widgets Remove nullOk in MediaQuery.of (#68736) 2020-10-28 07:56:41 -07:00
analysis_options.yaml [null-safety] remove enable experiment flags (#69930) 2020-11-05 23:58:11 -08:00
pubspec.yaml [null-safety] remove enable experiment flags (#69930) 2020-11-05 23:58:11 -08:00
README.md ✒ Spell Check All .md Files Related to Flutter 💙 (#61564) 2020-07-22 18:23:47 -07:00

Examples of Flutter's layered architecture

This directory contains several 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