Add M3U sources persistence UI and provider; integrate saved sources into HomeScreen

This commit is contained in:
2026-01-11 19:57:20 +09:00
parent 9cf16ce279
commit ad7081b342
4 changed files with 106 additions and 34 deletions

View File

@@ -11,6 +11,7 @@ import media_kit_libs_macos_video
import media_kit_video
import package_info_plus
import path_provider_foundation
import shared_preferences_foundation
import volume_controller
import wakelock_plus
@@ -21,6 +22,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
MediaKitVideoPlugin.register(with: registry.registrar(forPlugin: "MediaKitVideoPlugin"))
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
VolumeControllerPlugin.register(with: registry.registrar(forPlugin: "VolumeControllerPlugin"))
WakelockPlusMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockPlusMacosPlugin"))
}