2026-07-03 15:11:33 +02:00
|
|
|
import SwiftUI
|
|
|
|
|
|
2026-07-03 20:05:11 +02:00
|
|
|
/// The entry point of the Attendi sample app.
|
2026-07-04 10:32:59 +02:00
|
|
|
///
|
2026-07-05 13:43:49 +02:00
|
|
|
/// The app is a thin shell over the `Features` package. It showcases the Recording feature attached to its real audio services —
|
|
|
|
|
/// recording audio from the device's microphone, transcribing it on device in a locale picked from a toolbar menu, and presenting
|
|
|
|
|
/// the result in a modal sheet — while the speech model assets of every picked locale preinstall in the background, with their
|
|
|
|
|
/// download events reported through the Notifying feature's transient in-app notifications.
|
2026-07-03 15:11:33 +02:00
|
|
|
@main
|
|
|
|
|
struct AttendiApp: App {
|
2026-07-03 20:05:11 +02:00
|
|
|
|
|
|
|
|
// MARK: Body
|
|
|
|
|
|
|
|
|
|
/// The content of the app: a single window group showing the ``ContentView``.
|
2026-07-03 15:11:33 +02:00
|
|
|
var body: some Scene {
|
|
|
|
|
WindowGroup {
|
|
|
|
|
ContentView()
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-03 20:05:11 +02:00
|
|
|
|
2026-07-03 15:11:33 +02:00
|
|
|
}
|