flutter/examples/layers
Bartek Pacia b915f68d7a
Fix warning in flutter created project ("package attribute is deprecated" in AndroidManifest) (#123426)
Fix warning in `flutter create`d project ("package attribute is deprecated" in AndroidManifest)
2023-03-29 04:21:03 +00:00
..
android Fix warning in flutter created project ("package attribute is deprecated" in AndroidManifest) (#123426) 2023-03-29 04:21:03 +00:00
ios Add Info.plist from build directory as input path to Thin Binary build phase (#118209) 2023-01-13 13:41:08 -06:00
lib License update (#45373) 2019-11-27 15:04:02 -08:00
macos [macOS] Eliminate explicit main window init() (#123571) 2023-03-28 01:35:00 +00:00
raw Remove more references to dart:ui.window (#120994) 2023-02-18 01:50:08 +00:00
rendering Remove unnecessary null checks in examples/ (#118848) 2023-01-20 04:06:04 +00:00
services Remove unnecessary null checks in examples/ (#118848) 2023-01-20 04:06:04 +00:00
test Clean up the bindings APIs. (#89451) 2022-02-03 14:55:15 -08:00
widgets Unify analysis options (#108462) 2022-07-28 09:07:49 -07:00
.metadata [macOS] Adds macOS project files to layers example (#102539) 2022-05-13 14:17:01 -07:00
pubspec.yaml roll packages (#123339) 2023-03-23 19:03:57 +00: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