Propagated the Transcription type and locale binding through the RecordingView view and its view model in the Recording package target.

This commit is contained in:
2026-07-04 12:11:24 +02:00
parent 68c070948e
commit 20cbda7b27
6 changed files with 47 additions and 30 deletions
+4 -3
View File
@@ -23,9 +23,10 @@ struct ContentView: View {
NavigationStack {
RecordingView(
recorder: model.recorder,
transcriber: model.transcriber
) { text in
model.received(text)
transcriber: model.transcriber,
locale: $model.locale,
) { transcription in
model.received(transcription)
}
.navigationTitle("view.recording.navigation.title")
#if !os(macOS)