15 lines
402 B
Swift
15 lines
402 B
Swift
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 {
|
|
RecordingLiveActivity()
|
|
}
|
|
|
|
}
|