feat: first tries at save dialog, so far failing

This commit is contained in:
2026-03-18 11:40:43 +01:00
parent af8b8c9532
commit 82a77fdb0a
11 changed files with 445 additions and 128 deletions

View File

@@ -0,0 +1,13 @@
import SwiftUI
/// Focused value key for triggering chat export from the menu bar.
struct FocusedExportTriggerKey: FocusedValueKey {
typealias Value = Binding<Bool>
}
extension FocusedValues {
var exportTrigger: Binding<Bool>? {
get { self[FocusedExportTriggerKey.self] }
set { self[FocusedExportTriggerKey.self] = newValue }
}
}