feat: start of widgets

This commit is contained in:
2026-01-04 21:45:44 -05:00
Unverified
parent caf8af638a
commit 0967b113be
37 changed files with 606 additions and 3612 deletions

View File

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