// // 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 }