youtube player plugin

This commit is contained in:
2024-11-14 10:49:38 +02:00
parent fe092fda31
commit c07f0c25c5
5 changed files with 112 additions and 3 deletions

View File

@@ -7,6 +7,8 @@ import Foundation
import app_links
import device_info_plus
import firebase_core
import flutter_inappwebview_macos
import geolocator_apple
import no_screenshot
import path_provider_foundation
@@ -18,6 +20,8 @@ import url_launcher_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
AppLinksMacosPlugin.register(with: registry.registrar(forPlugin: "AppLinksMacosPlugin"))
DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin"))
FLTFirebaseCorePlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseCorePlugin"))
InAppWebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "InAppWebViewFlutterPlugin"))
GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin"))
NoScreenshotPlugin.register(with: registry.registrar(forPlugin: "NoScreenshotPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))