flutter/examples/layers
Greg Spencer 909406ba25
Consolidating .gitignore files. (#13002)
This consolidates all of the non-template .gitignore rules into the top level .gitignore, to ignore common things more broadly, with less maintenance needed for the .gitignore files. Does not touch the templates, so that they still produce needed .gitignores as part of flutter create.
2017-11-28 17:06:57 -08:00
..
android Consolidating .gitignore files. (#13002) 2017-11-28 17:06:57 -08:00
ios Consolidating .gitignore files. (#13002) 2017-11-28 17:06:57 -08:00
lib TextPainter RTL (#11888) 2017-09-07 16:57:38 -07:00
raw TextPainter RTL (#12791) 2017-10-31 10:39:34 -07:00
rendering Fix spelling errors in all the dartdocs. (#13061) 2017-11-17 10:05:21 -08:00
services enable lint prefer_single_quotes (#12665) 2017-10-22 18:11:36 +02:00
test Fix tests (#12132) 2017-09-18 13:42:06 -07:00
widgets enable lint prefer_single_quotes (#12665) 2017-10-22 18:11:36 +02:00
pubspec.yaml Update Dart package dependencies (#12829) 2017-11-01 15:28:46 -07:00
README.md Update the examples/ README and associated fixes. (#9090) 2017-04-05 11:28:33 -07:00

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