Files

15 lines
378 B
Swift
Raw Permalink Normal View History

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()
}
}