import Foundation import Libbox import Library import SwiftUI public extension EnvironmentValues { private struct showMenuBarExtraKey: EnvironmentKey { static let defaultValue: Binding = .constant(true) } var showMenuBarExtra: Binding { get { self[showMenuBarExtraKey.self] } set { self[showMenuBarExtraKey.self] = newValue } } private struct selectionKey: EnvironmentKey { static let defaultValue: Binding = .constant(.dashboard) } var selection: Binding { get { self[selectionKey.self] } set { self[selectionKey.self] = newValue } } private struct importRemoteProfileKey: EnvironmentKey { static var defaultValue: Binding = .constant(nil) } var importRemoteProfile: Binding { get { self[importRemoteProfileKey.self] } set { self[importRemoteProfileKey.self] = newValue } } private struct importProfileKey: EnvironmentKey { static var defaultValue: Binding = .constant(nil) } var importProfile: Binding { get { self[importProfileKey.self] } set { self[importProfileKey.self] = newValue } } }