import SwiftUI func NavigationDestinationCompat(isPresented: Binding, @ViewBuilder destination: () -> some View) -> some View { NavigationLink( destination: destination(), isActive: isPresented, label: { EmptyView() } ) }