Files
tripz/ios/MyWidgetHome/AppIntent.swift
Hamza-Ayed bdf380b925 25-5-10/1
2025-05-11 00:03:19 +03:00

19 lines
469 B
Swift

//
// AppIntent.swift
// MyWidgetHome
//
// Created by Hamza Aleghwairyeen on 11/05/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
}