Files
LoveLiveMusicPlayerKMP/iosApp/WidgetExtension/BackgroundIntent.swift
2026-08-11 00:33:28 +08:00

30 lines
732 B
Swift

import AppIntents
import Foundation
@available(iOS 17, *)
public struct BackgroundIntent: AppIntent {
static public var title: LocalizedStringResource = "LLMP Widget Action"
@Parameter(title: "Widget URI")
var url: URL?
public init() {}
public init(url: URL?) {
self.url = url
}
public func perform() async throws -> some IntentResult {
NotificationCenter.default.post(
name: Notification.Name("fromWidgetToHost"),
object: nil,
userInfo: ["url": url?.absoluteString ?? ""]
)
return .result()
}
}
@available(iOS 17, *)
@available(iOSApplicationExtension, unavailable)
extension BackgroundIntent: ForegroundContinuableIntent {}