Files
digital-pilates/ios/WaterWidget/AppIntent.swift
2025-09-09 10:01:11 +08:00

19 lines
454 B
Swift

//
// AppIntent.swift
// WaterWidget
//
// Created by richard on 2025/9/9.
//
import WidgetKit
import AppIntents
struct ConfigurationAppIntent: WidgetConfigurationIntent {
static var title: LocalizedStringResource { "Configuration" }
static var description: IntentDescription { "This is an example widget." }
// An example configurable parameter.
@Parameter(title: "Favorite Emoji", default: "😃")
var favoriteEmoji: String
}