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
···
import flutter_secure_storage_macos
import flutter_web_auth_2
import path_provider_foundation
+
import share_plus
import shared_preferences_foundation
import sqflite_darwin
import url_launcher_macos
···
FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin"))
FlutterWebAuth2Plugin.register(with: registry.registrar(forPlugin: "FlutterWebAuth2Plugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
+
SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
+24
pubspec.lock
···
url: "https://pub.dev"
source: hosted
version: "3.1.2"
+
cross_file:
+
dependency: transitive
+
description:
+
name: cross_file
+
sha256: "942a4791cd385a68ccb3b32c71c427aba508a1bb949b86dff2adbe4049f16239"
+
url: "https://pub.dev"
+
source: hosted
+
version: "0.3.5"
crypto:
dependency: transitive
description:
···
url: "https://pub.dev"
source: hosted
version: "0.28.0"
+
share_plus:
+
dependency: "direct main"
+
description:
+
name: share_plus
+
sha256: fce43200aa03ea87b91ce4c3ac79f0cecd52e2a7a56c7a4185023c271fbfa6da
+
url: "https://pub.dev"
+
source: hosted
+
version: "10.1.4"
+
share_plus_platform_interface:
+
dependency: transitive
+
description:
+
name: share_plus_platform_interface
+
sha256: cc012a23fc2d479854e6c80150696c4a5f5bb62cb89af4de1c505cf78d0a5d0b
+
url: "https://pub.dev"
+
source: hosted
+
version: "5.0.2"
shared_preferences:
dependency: "direct main"
description:
+3
windows/flutter/generated_plugin_registrant.cc
···
#include <desktop_webview_window/desktop_webview_window_plugin.h>
#include <flutter_secure_storage_windows/flutter_secure_storage_windows_plugin.h>
+
#include <share_plus/share_plus_windows_plugin_c_api.h>
#include <url_launcher_windows/url_launcher_windows.h>
#include <window_to_front/window_to_front_plugin.h>
···
registry->GetRegistrarForPlugin("DesktopWebviewWindowPlugin"));
FlutterSecureStorageWindowsPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin"));
+
SharePlusWindowsPluginCApiRegisterWithRegistrar(
+
registry->GetRegistrarForPlugin("SharePlusWindowsPluginCApi"));
UrlLauncherWindowsRegisterWithRegistrar(
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
WindowToFrontPluginRegisterWithRegistrar(
+1
windows/flutter/generated_plugins.cmake
···
list(APPEND FLUTTER_PLUGIN_LIST
desktop_webview_window
flutter_secure_storage_windows
+
share_plus
url_launcher_windows
window_to_front
)