#if os(iOS) || os(macOS) import SwiftUI public struct ProfileEditorKey: EnvironmentKey { public static let defaultValue: ((Binding, Bool) -> AnyView)? = nil } public extension EnvironmentValues { var profileEditor: ((Binding, Bool) -> AnyView)? { get { self[ProfileEditorKey.self] } set { self[ProfileEditorKey.self] = newValue } } } #endif