12 lines
281 B
Swift
12 lines
281 B
Swift
import SwiftUI
|
|
|
|
func NavigationDestinationCompat(isPresented: Binding<Bool>, @ViewBuilder destination: () -> some View) -> some View {
|
|
NavigationLink(
|
|
destination: destination(),
|
|
isActive: isPresented,
|
|
label: {
|
|
EmptyView()
|
|
}
|
|
)
|
|
}
|