yattee/Shared/EnvironmentValues.swift
2021-09-02 01:11:58 +02:00

14 lines
302 B
Swift

import Foundation
import SwiftUI
private struct InNavigationViewKey: EnvironmentKey {
static let defaultValue = false
}
extension EnvironmentValues {
var inNavigationView: Bool {
get { self[InNavigationViewKey.self] }
set { self[InNavigationViewKey.self] = newValue }
}
}