Files
mindfulness/client/ios/情绪小组件/AppIntent.swift
2026-01-28 22:54:21 +08:00

19 lines
456 B
Swift

//
// AppIntent.swift
//
//
// Created by jojo on 2026/1/28.
//
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
}