// // AppIntent.swift // liveapp // // Created by Cloud Solutions on 14/12/2025. // 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 }