flutter/examples/layers
2021-04-19 20:19:03 -07:00
..
android Standardize how Java8 is set in gradle files (#80600) 2021-04-19 20:19:03 -07:00
ios Build iOS apps using Swift Packages (#73508) 2021-01-07 15:59:09 -08:00
lib License update (#45373) 2019-11-27 15:04:02 -08:00
raw Fix typo (#77327) 2021-03-05 09:19:34 -08:00
rendering add trailing comma when argList is splitted (#79650) 2021-04-03 07:09:02 -07:00
services enable use_key_in_widget_constructors lint (#77032) 2021-03-02 10:14:02 -08:00
test enable use_key_in_widget_constructors lint (#77032) 2021-03-02 10:14:02 -08:00
widgets Turn on sized_box_for_whitespace lint, fix instances. (#77099) 2021-03-03 17:29:02 -08:00
pubspec.yaml [versions] roll to latest test (#79099) 2021-03-31 07:45:40 -07: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