Код: Выделить всё
struct ContentView: View {
@State private var isPresented = false
var body: some View {
VStack {
Text("Placeholder")
.padding()
NavigationStack {
VStack {
Button {
isPresented.toggle()
} label: {
SourceView()
}
.navigationDestination(isPresented: $isPresented) {
DetailView()
}
}
}
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... -in-ios-26