mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This PR introduces support for creating Flutter plugins with a single, shared implementation for iOS and macOS. This is enabled by a new darwin platform option in the flutter create command, which simplifies code maintenance and reduces duplication for plugin authors. *List which issues are fixed by this PR. You must list at least one issue. An issue is not required if the PR fixes something trivial like a typo.* Fixes #161019 *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].* ## Pre-launch Checklist - [X] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [X] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [X] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [X] I signed the [CLA]. - [X] I listed at least one issue that this PR fixes in the description above. - [X] I updated/added relevant documentation (doc comments with `///`). - [X] I added new tests to check the change I am making, or this PR is [test-exempt]. - [X] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [X] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. **Note**: The Flutter team is currently trialing the use of [Gemini Code Assist for GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code). Comments from the `gemini-code-assist` bot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview [Tree Hygiene]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md [test-exempt]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests [Flutter Style Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md [Features we expect every widget to implement]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md [Data Driven Fixes]: https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
159 lines
4.3 KiB
Cheetah
159 lines
4.3 KiB
Cheetah
name: {{projectName}}
|
|
description: {{description}}
|
|
version: 0.0.1
|
|
homepage:
|
|
|
|
environment:
|
|
sdk: {{dartSdkVersionBounds}}
|
|
flutter: '>=3.3.0'
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
{{#web}}
|
|
flutter_web_plugins:
|
|
sdk: flutter
|
|
web: ^1.0.0
|
|
{{/web}}
|
|
plugin_platform_interface: ^2.0.2
|
|
|
|
dev_dependencies:
|
|
{{#withFfi}}
|
|
ffi: ^2.1.3
|
|
ffigen: ^13.0.0
|
|
{{/withFfi}}
|
|
flutter_test:
|
|
sdk: flutter
|
|
flutter_lints: ^6.0.0
|
|
|
|
# For information on the generic Dart part of this file, see the
|
|
# following page: https://dart.dev/tools/pub/pubspec
|
|
|
|
# The following section is specific to Flutter packages.
|
|
flutter:
|
|
# This section identifies this Flutter project as a plugin project.
|
|
# The 'pluginClass' specifies the class (in Java, Kotlin, Swift, Objective-C, etc.)
|
|
# which should be registered in the plugin registry. This is required for
|
|
# using method channels.
|
|
# The Android 'package' specifies package in which the registered class is.
|
|
# This is required for using method channels on Android.
|
|
# The 'ffiPlugin' specifies that native code should be built and bundled.
|
|
# This is required for using `dart:ffi`.
|
|
# All these are used by the tooling to maintain consistency when
|
|
# adding or updating assets for this project.
|
|
{{#withFfiPluginHook}}
|
|
#
|
|
# Please refer to README.md for a detailed explanation.
|
|
plugin:
|
|
platforms:
|
|
{{#no_platforms}}
|
|
# This FFI plugin project was generated without specifying any
|
|
# platforms with the `--platform` argument. If you see the `some_platform` map below, remove it and
|
|
# then add platforms following the instruction here:
|
|
# https://flutter.dev/to/pubspec-plugin-platforms
|
|
# -------------------
|
|
some_platform:
|
|
ffiPlugin: true
|
|
# -------------------
|
|
{{/no_platforms}}
|
|
{{#android}}
|
|
android:
|
|
ffiPlugin: true
|
|
{{/android}}
|
|
{{#ios}}
|
|
ios:
|
|
ffiPlugin: true
|
|
{{/ios}}
|
|
{{#linux}}
|
|
linux:
|
|
ffiPlugin: true
|
|
{{/linux}}
|
|
{{#macos}}
|
|
macos:
|
|
ffiPlugin: true
|
|
{{/macos}}
|
|
{{#windows}}
|
|
windows:
|
|
ffiPlugin: true
|
|
{{/windows}}
|
|
{{/withFfiPluginHook}}
|
|
{{#withPlatformChannelPluginHook}}
|
|
plugin:
|
|
platforms:
|
|
{{#no_platforms}}
|
|
# This plugin project was generated without specifying any
|
|
# platforms with the `--platform` argument. If you see the `some_platform` map below, remove it and
|
|
# then add platforms following the instruction here:
|
|
# https://flutter.dev/to/pubspec-plugin-platforms
|
|
# -------------------
|
|
some_platform:
|
|
pluginClass: somePluginClass
|
|
# -------------------
|
|
{{/no_platforms}}
|
|
{{#android}}
|
|
android:
|
|
package: {{androidIdentifier}}
|
|
pluginClass: {{pluginClass}}
|
|
{{/android}}
|
|
{{#ios}}
|
|
ios:
|
|
pluginClass: {{pluginClass}}
|
|
{{/ios}}
|
|
{{#linux}}
|
|
linux:
|
|
pluginClass: {{pluginClass}}
|
|
{{/linux}}
|
|
{{#macos}}
|
|
macos:
|
|
pluginClass: {{pluginClass}}
|
|
{{/macos}}
|
|
{{#darwin}}
|
|
ios:
|
|
pluginClass: {{pluginClass}}
|
|
sharedDarwinSource: true
|
|
macos:
|
|
pluginClass: {{pluginClass}}
|
|
sharedDarwinSource: true
|
|
{{/darwin}}
|
|
{{#windows}}
|
|
windows:
|
|
pluginClass: {{pluginClass}}CApi
|
|
{{/windows}}
|
|
{{#web}}
|
|
web:
|
|
pluginClass: {{pluginDartClass}}Web
|
|
fileName: {{projectName}}_web.dart
|
|
{{/web}}
|
|
{{/withPlatformChannelPluginHook}}
|
|
|
|
# To add assets to your plugin package, add an assets section, like this:
|
|
# assets:
|
|
# - images/a_dot_burr.jpeg
|
|
# - images/a_dot_ham.jpeg
|
|
#
|
|
# For details regarding assets in packages, see
|
|
# https://flutter.dev/to/asset-from-package
|
|
#
|
|
# An image asset can refer to one or more resolution-specific "variants", see
|
|
# https://flutter.dev/to/resolution-aware-images
|
|
|
|
# To add custom fonts to your plugin package, add a fonts section here,
|
|
# in this "flutter" section. Each entry in this list should have a
|
|
# "family" key with the font family name, and a "fonts" key with a
|
|
# list giving the asset and other descriptors for the font. For
|
|
# example:
|
|
# fonts:
|
|
# - family: Schyler
|
|
# fonts:
|
|
# - asset: fonts/Schyler-Regular.ttf
|
|
# - asset: fonts/Schyler-Italic.ttf
|
|
# style: italic
|
|
# - family: Trajan Pro
|
|
# fonts:
|
|
# - asset: fonts/TrajanPro.ttf
|
|
# - asset: fonts/TrajanPro_Bold.ttf
|
|
# weight: 700
|
|
#
|
|
# For details regarding fonts in packages, see
|
|
# https://flutter.dev/to/font-from-package
|