2026-07-05 17:40:56 +02:00
|
|
|
import SwiftUI
|
2026-07-07 00:06:52 +02:00
|
|
|
import WidgetKit
|
2026-07-05 17:40:56 +02:00
|
|
|
|
2026-07-07 00:06:52 +02:00
|
|
|
/// The bundle exposing the app's Live Activities to the system: the ``RecordingLiveActivity`` that surfaces the recording flow on the
|
|
|
|
|
/// Lock Screen and in the Dynamic Island.
|
2026-07-05 17:40:56 +02:00
|
|
|
@main
|
|
|
|
|
struct AttendiWidgetBundle: WidgetBundle {
|
2026-07-06 03:43:25 +02:00
|
|
|
|
2026-07-07 00:06:52 +02:00
|
|
|
/// The Live Activities the bundle exposes.
|
2026-07-05 17:40:56 +02:00
|
|
|
var body: some Widget {
|
2026-07-06 03:43:25 +02:00
|
|
|
RecordingLiveActivity()
|
2026-07-05 17:40:56 +02:00
|
|
|
}
|
2026-07-06 03:43:25 +02:00
|
|
|
|
2026-07-05 17:40:56 +02:00
|
|
|
}
|