Implemented the (first version of the) Recording Live Activity in the Attendi widget target.

This commit is contained in:
2026-07-06 03:43:25 +02:00
parent ffa80d3b58
commit 874de398d2
15 changed files with 755 additions and 4 deletions
@@ -1,11 +1,18 @@
import WidgetKit
import AppIntents
/// The configuration intent of the ``AttendiWidget`` placeholder, as scaffolded by the Xcode widget template.
struct ConfigurationAppIntent: WidgetConfigurationIntent {
// MARK: Constants
static var title: LocalizedStringResource { "Configuration" }
static var description: IntentDescription { "This is an example widget." }
// An example configurable parameter.
// MARK: Properties
/// An example configurable parameter.
@Parameter(title: "Favorite Emoji", default: "😃")
var favoriteEmoji: String
}