19 lines
465 B
Swift
19 lines
465 B
Swift
|
|
//
|
||
|
|
// AppIntent.swift
|
||
|
|
// LockInBroWidget
|
||
|
|
//
|
||
|
|
// Created by Aditya Pulipaka on 3/28/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
|
||
|
|
}
|