flutter/examples/layers
Chris Bracken 3c9288c6d3
Increase minimum supported macOS version from 10.13 to 10.14 (#114713)
Increases the minimum macOS deployment target from macOS 10.13 (High Sierra) to 10.14 (Mojave) in the macOS app templates.

Includes:
* Update migration for macOS 10.11 apps to upgrade to 10.14
* Adds migration for macOS 10.13 apps to upgrade to 10.14
* Apply migration to all examples, and integration tests

This does not increase version in the plugin templates since those will need to wait until the 10.14 framework rolls to stable channel, so new plugins can build with apps created with `flutter create` on stable channel.

Issue: https://github.com/flutter/flutter/issues/114445
See RFC: http://flutter.dev/go/flutter-drop-macOS-10.13-2022-q4
See previous patch: https://github.com/flutter/flutter/pull/107689
2022-11-07 11:32:42 +01:00
..
android Reland "Upgrade Gradle and AGP versions to 7.5/7.2 and migrate benchmarks+examples" #108472 (#108510) 2022-07-28 19:38:07 -07:00
ios Set Xcode build script phases to always run (#108331) 2022-07-26 19:20:07 +00:00
lib License update (#45373) 2019-11-27 15:04:02 -08:00
macos Increase minimum supported macOS version from 10.13 to 10.14 (#114713) 2022-11-07 11:32:42 +01:00
raw Use PlatformDispatcher.instance over window where possible (#99496) 2022-03-03 14:46:16 -08:00
rendering Unify analysis options (#108462) 2022-07-28 09:07:49 -07:00
services Unify analysis options (#108462) 2022-07-28 09:07:49 -07:00
test Clean up the bindings APIs. (#89451) 2022-02-03 14:55:15 -08:00
widgets Unify analysis options (#108462) 2022-07-28 09:07:49 -07:00
.metadata [macOS] Adds macOS project files to layers example (#102539) 2022-05-13 14:17:01 -07:00
pubspec.yaml Roll pub packages (#114189) 2022-10-28 19:15:08 +00: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