Files
EzTimer/EzTimerWidget/AppIntent.swift
2026-01-19 22:10:34 -05:00

19 lines
460 B
Swift

//
// AppIntent.swift
// EzTimerWidget
//
// Created by Jared Evans on 12/17/25.
//
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
}