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,9 +1,15 @@
import WidgetKit
import SwiftUI
/// The bundle exposing the app's widgets and Live Activities to the system: the ``AttendiWidget`` Home Screen widget and the
/// ``RecordingLiveActivity`` that surfaces the recording flow.
@main
struct AttendiWidgetBundle: WidgetBundle {
/// The widgets and Live Activities the bundle exposes.
var body: some Widget {
AttendiWidget()
RecordingLiveActivity()
}
}