Files
honeyDueKMP/iosApp/MyCrib/AppIntent.swift
Trey t fe99f67f81 wip
2025-11-05 19:21:46 -06:00

19 lines
451 B
Swift

//
// AppIntent.swift
// MyCrib
//
// Created by Trey Tartt on 11/5/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
}