Swift Entry macro (@Entry) 기존 SwiftUI에서는 아래의 형태로 커스텀하여 사용할 수 있었음. extension EnvironmentValues { struct OrientationEnvironmentKey: EnvironmentKey { static var defaultValue: UIInterfaceOrientation = .portrait } var orientation: UIInterfaceOrientation { get { self[OrientationEnvironmentKey.self] } set { self[OrientationEnvironmentKey.self] = newValue } }} 해당 매크..