
* Revert "Update templates (#23698)" This reverts commit 5b0de6d679ff2e870711b986577bc7769c1745fb. * Revert "Verify that date/number translations exist for all supported languages (#23692)" This reverts commit 3449edf256aa389405ef6a86387dc02c81061b2e. * Revert "Reland Xcode backend refactor (#23574)" This reverts commit 7270f2845d9a975387191ab6adcada4c492273b5.
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