mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
![]() * Add example IntelliJ metadata (flutter-intellij#607). Ensures example projects open cleanly out-of-the-box w/ the Flutter Plugin. See: https://github.com/flutter/flutter-intellij/issues/607. * Fixed IML files. |
||
---|---|---|
.. | ||
.idea | ||
android | ||
raw | ||
rendering | ||
services | ||
test | ||
widgets | ||
flutter.yaml | ||
layers.iml | ||
pubspec.yaml | ||
README.md |
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