chore: update generated plugin registrants and lockfile

Auto-generated files updated after adding share_plus dependency
and running flutter pub get.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+2
macos/Flutter/GeneratedPluginRegistrant.swift
··· 9 import flutter_secure_storage_macos 10 import flutter_web_auth_2 11 import path_provider_foundation 12 import shared_preferences_foundation 13 import sqflite_darwin 14 import url_launcher_macos ··· 20 FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin")) 21 FlutterWebAuth2Plugin.register(with: registry.registrar(forPlugin: "FlutterWebAuth2Plugin")) 22 PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) 23 SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) 24 SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin")) 25 UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
··· 9 import flutter_secure_storage_macos 10 import flutter_web_auth_2 11 import path_provider_foundation 12 + import share_plus 13 import shared_preferences_foundation 14 import sqflite_darwin 15 import url_launcher_macos ··· 21 FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin")) 22 FlutterWebAuth2Plugin.register(with: registry.registrar(forPlugin: "FlutterWebAuth2Plugin")) 23 PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) 24 + SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin")) 25 SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) 26 SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin")) 27 UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
+24
pubspec.lock
··· 184 url: "https://pub.dev" 185 source: hosted 186 version: "3.1.2" 187 crypto: 188 dependency: transitive 189 description: ··· 735 url: "https://pub.dev" 736 source: hosted 737 version: "0.28.0" 738 shared_preferences: 739 dependency: "direct main" 740 description:
··· 184 url: "https://pub.dev" 185 source: hosted 186 version: "3.1.2" 187 + cross_file: 188 + dependency: transitive 189 + description: 190 + name: cross_file 191 + sha256: "942a4791cd385a68ccb3b32c71c427aba508a1bb949b86dff2adbe4049f16239" 192 + url: "https://pub.dev" 193 + source: hosted 194 + version: "0.3.5" 195 crypto: 196 dependency: transitive 197 description: ··· 743 url: "https://pub.dev" 744 source: hosted 745 version: "0.28.0" 746 + share_plus: 747 + dependency: "direct main" 748 + description: 749 + name: share_plus 750 + sha256: fce43200aa03ea87b91ce4c3ac79f0cecd52e2a7a56c7a4185023c271fbfa6da 751 + url: "https://pub.dev" 752 + source: hosted 753 + version: "10.1.4" 754 + share_plus_platform_interface: 755 + dependency: transitive 756 + description: 757 + name: share_plus_platform_interface 758 + sha256: cc012a23fc2d479854e6c80150696c4a5f5bb62cb89af4de1c505cf78d0a5d0b 759 + url: "https://pub.dev" 760 + source: hosted 761 + version: "5.0.2" 762 shared_preferences: 763 dependency: "direct main" 764 description:
+3
windows/flutter/generated_plugin_registrant.cc
··· 8 9 #include <desktop_webview_window/desktop_webview_window_plugin.h> 10 #include <flutter_secure_storage_windows/flutter_secure_storage_windows_plugin.h> 11 #include <url_launcher_windows/url_launcher_windows.h> 12 #include <window_to_front/window_to_front_plugin.h> 13 ··· 16 registry->GetRegistrarForPlugin("DesktopWebviewWindowPlugin")); 17 FlutterSecureStorageWindowsPluginRegisterWithRegistrar( 18 registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin")); 19 UrlLauncherWindowsRegisterWithRegistrar( 20 registry->GetRegistrarForPlugin("UrlLauncherWindows")); 21 WindowToFrontPluginRegisterWithRegistrar(
··· 8 9 #include <desktop_webview_window/desktop_webview_window_plugin.h> 10 #include <flutter_secure_storage_windows/flutter_secure_storage_windows_plugin.h> 11 + #include <share_plus/share_plus_windows_plugin_c_api.h> 12 #include <url_launcher_windows/url_launcher_windows.h> 13 #include <window_to_front/window_to_front_plugin.h> 14 ··· 17 registry->GetRegistrarForPlugin("DesktopWebviewWindowPlugin")); 18 FlutterSecureStorageWindowsPluginRegisterWithRegistrar( 19 registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin")); 20 + SharePlusWindowsPluginCApiRegisterWithRegistrar( 21 + registry->GetRegistrarForPlugin("SharePlusWindowsPluginCApi")); 22 UrlLauncherWindowsRegisterWithRegistrar( 23 registry->GetRegistrarForPlugin("UrlLauncherWindows")); 24 WindowToFrontPluginRegisterWithRegistrar(
+1
windows/flutter/generated_plugins.cmake
··· 5 list(APPEND FLUTTER_PLUGIN_LIST 6 desktop_webview_window 7 flutter_secure_storage_windows 8 url_launcher_windows 9 window_to_front 10 )
··· 5 list(APPEND FLUTTER_PLUGIN_LIST 6 desktop_webview_window 7 flutter_secure_storage_windows 8 + share_plus 9 url_launcher_windows 10 window_to_front 11 )