|
5 | 5 | import FlutterMacOS |
6 | 6 | import Foundation |
7 | 7 |
|
| 8 | +import desktop_webview_window |
8 | 9 | import device_info_plus |
| 10 | +import file_picker |
9 | 11 | import flutter_inappwebview_macos |
10 | 12 | import flutter_local_notifications |
11 | | -import flutter_secure_storage_macos |
| 13 | +import flutter_secure_storage_darwin |
12 | 14 | import flutter_web_auth_2 |
| 15 | +import local_auth_darwin |
13 | 16 | import location |
14 | 17 | import package_info_plus |
15 | 18 | import path_provider_foundation |
16 | | -import pdfx |
17 | 19 | import share_plus |
18 | 20 | import shared_preferences_foundation |
19 | | -import sqflite |
| 21 | +import sqflite_darwin |
20 | 22 | import url_launcher_macos |
21 | 23 | import video_player_avfoundation |
22 | 24 | import wakelock_plus |
| 25 | +import webview_flutter_wkwebview |
23 | 26 | import window_to_front |
24 | 27 |
|
25 | 28 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { |
| 29 | + DesktopWebviewWindowPlugin.register(with: registry.registrar(forPlugin: "DesktopWebviewWindowPlugin")) |
26 | 30 | DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin")) |
| 31 | + FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin")) |
27 | 32 | InAppWebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "InAppWebViewFlutterPlugin")) |
28 | 33 | FlutterLocalNotificationsPlugin.register(with: registry.registrar(forPlugin: "FlutterLocalNotificationsPlugin")) |
29 | | - FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin")) |
| 34 | + FlutterSecureStorageDarwinPlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStorageDarwinPlugin")) |
30 | 35 | FlutterWebAuth2Plugin.register(with: registry.registrar(forPlugin: "FlutterWebAuth2Plugin")) |
| 36 | + LocalAuthPlugin.register(with: registry.registrar(forPlugin: "LocalAuthPlugin")) |
31 | 37 | LocationPlugin.register(with: registry.registrar(forPlugin: "LocationPlugin")) |
32 | 38 | FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin")) |
33 | 39 | PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) |
34 | | - PdfxPlugin.register(with: registry.registrar(forPlugin: "PdfxPlugin")) |
35 | 40 | SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin")) |
36 | 41 | SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) |
37 | 42 | SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin")) |
38 | 43 | UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) |
39 | 44 | FVPVideoPlayerPlugin.register(with: registry.registrar(forPlugin: "FVPVideoPlayerPlugin")) |
40 | 45 | WakelockPlusMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockPlusMacosPlugin")) |
| 46 | + WebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "WebViewFlutterPlugin")) |
41 | 47 | WindowToFrontPlugin.register(with: registry.registrar(forPlugin: "WindowToFrontPlugin")) |
42 | 48 | } |
0 commit comments