flutter/examples
Jenn Magder acdbcadb9e
Set template and migrate apps to iOS 12 minimum (#140478)
1. Change templates to `IPHONEOS_DEPLOYMENT_TARGET`, `MinimumOSVersion`, and Podfile `platform :ios` to 12.0.
2. Add migrator for Podfile part to migrate `platform :ios, '11.0'` -> `platform :ios, '12.0'`
3. Compile with `-miphoneos-version-min=12.0`
4. Run the migrator on all example apps and integration tests.

See also https://github.com/flutter/flutter/pull/62902 and https://github.com/flutter/flutter/pull/85174 and https://github.com/flutter/flutter/pull/101963

Fixes https://github.com/flutter/flutter/issues/136060
2024-01-02 19:42:13 +00:00
..
api Set template and migrate apps to iOS 12 minimum (#140478) 2024-01-02 19:42:13 +00:00
flutter_view Set template and migrate apps to iOS 12 minimum (#140478) 2024-01-02 19:42:13 +00:00
hello_world Set template and migrate apps to iOS 12 minimum (#140478) 2024-01-02 19:42:13 +00:00
image_list Set template and migrate apps to iOS 12 minimum (#140478) 2024-01-02 19:42:13 +00:00
layers Set template and migrate apps to iOS 12 minimum (#140478) 2024-01-02 19:42:13 +00:00
platform_channel Set template and migrate apps to iOS 12 minimum (#140478) 2024-01-02 19:42:13 +00:00
platform_channel_swift Set template and migrate apps to iOS 12 minimum (#140478) 2024-01-02 19:42:13 +00:00
platform_view Set template and migrate apps to iOS 12 minimum (#140478) 2024-01-02 19:42:13 +00:00
splash Roll pub packages (#140472) 2023-12-20 22:57:21 +00:00
texture Roll pub packages (#140472) 2023-12-20 22:57:21 +00:00
.clang-format Implement Linux part of examples (#108068) 2022-12-08 08:44:11 +13:00
flutter_gallery.readme
README.md Fix typo in README.md (#126053) 2023-05-04 14:58:17 +02:00

Flutter Examples

This directory contains several examples of using Flutter. To run an example, use flutter run inside that example's directory. See the getting started guide to install the flutter tool.

For additional samples, see the flutter/samples repo.

Available examples include:

Notes

Note on Gradle wrapper files in .gitignore:

Gradle wrapper files should normally be checked into source control. The example projects don't do that to avoid having several copies of the wrapper binary in the Flutter repo. Instead, the Gradle wrapper is injected by Flutter tooling, and the wrapper files are .gitignore'd to avoid making the Flutter repository dirty as a side effect of running the examples.