flutter/examples/layers
2020-10-19 15:47:04 -07:00
..
android move compile/target sdk versions to 29 (#62799) (#63008) 2020-08-11 14:51:02 -07:00
ios Build iOS apps using Swift Packages (#68361) 2020-10-19 15:47:04 -07:00
lib License update (#45373) 2019-11-27 15:04:02 -08:00
raw enable lint prefer_final_in_for_each (#47724) 2020-01-07 16:32:04 +01:00
rendering test flutter framework with null-safety (#59280) 2020-06-11 16:40:02 -07:00
services Updated examples/layers to use the new button API. (#62932) 2020-08-05 15:15:46 -07:00
test License update (#45373) 2019-11-27 15:04:02 -08:00
widgets Updated references to obsolete Material button classes in examples (#65904) 2020-09-16 08:02:06 -07:00
pubspec.yaml Update package:stack_trace dependency to 1.10.0-nullsafety.4 (#68132) 2020-10-16 16:35:20 +02: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