Files
2026-09-04 21:30:51 +02:00

19 lines
473 B
Swift

//
// AppIntent.swift
// VanAligneiOSWidget
//
// Created by Christopher Helberg on 02.09.26.
//
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
}