Closed erf closed 2 years ago
I ran: flutter create --template=plugin --platforms=ios . and a set of new files were added:
flutter create --template=plugin --platforms=ios .
That is:
lib/icloud_storage_method_channel.dart lib/icloud_storage_platform_interface.dart test/icloud_storage_method_channel_test.dart
In addition to a few modifications to existing files.
It seem that icloud_storage_platform_interface depends on the package:
icloud_storage_platform_interface
https://pub.dev/packages/plugin_platform_interface
Which adds the PlatformInterface which is recommended for platform interfaces.
PlatformInterface
I wonder if you would like to support this interface?
I found this whilst looking into supporting the macos platform.
macos
Release 2.0.0 is now supporting macOS.
I ran:
flutter create --template=plugin --platforms=ios .
and a set of new files were added:That is:
In addition to a few modifications to existing files.
It seem that
icloud_storage_platform_interface
depends on the package:Which adds the
PlatformInterface
which is recommended for platform interfaces.I wonder if you would like to support this interface?
I found this whilst looking into supporting the
macos
platform.