This commit is contained in:
Trey t
2025-11-05 19:21:46 -06:00
parent 6bad8d6b5a
commit fe99f67f81
18 changed files with 1203 additions and 80 deletions

View File

@@ -0,0 +1,18 @@
//
// 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
}