iOS Swift - Navigation
What is the expected behavior when the user taps the text "Settings" in this SwiftUI code?
NavigationView {
NavigationLink(destination: Text("Settings Page")) {
Text("Settings")
}
}