Skip to content

Commit

Permalink
add dartdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
sigurdm committed Nov 25, 2024
1 parent 7a8b202 commit 0ce497c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/src/tag/tagger.dart
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,16 @@ class Tagger {
}
}

/// Tag if iOS/macOS plugin has migrated to Swift Package Manager (swiftpm).
///
/// A plugin only needs to be swiftpm enabled if it has a native component, we
/// detect that if it has the `flutter.plugin.platforms.<os>.pluginClass` key
/// present in the pubspec.
///
/// A plugin can share code and package-manager manifest between iOS and
/// macOS by specifying `flutter.plugin.platforms.<os>.sharedDarwinSource`.
///
/// See https://docs.flutter.dev/packages-and-plugins/swift-package-manager/for-plugin-authors
void swiftPackageManagerPluginTag(
List<String> tags, List<Explanation> explanations) {
if (!_usesFlutter) return;
Expand Down

0 comments on commit 0ce497c

Please sign in to comment.