Files
attendi/Widgets/Attendi/Sources/Bundle/AttendiWidgetBundle.swift
T

15 lines
402 B
Swift
Raw Normal View History

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