15 lines
378 B
Swift
15 lines
378 B
Swift
import SwiftUI
|
|
import WidgetKit
|
|
|
|
/// 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.
|
|
@main
|
|
struct AttendiWidgetBundle: WidgetBundle {
|
|
|
|
/// The Live Activities the bundle exposes.
|
|
var body: some Widget {
|
|
RecordingLiveActivity()
|
|
}
|
|
|
|
}
|