In SwiftUI, tapping the search button does not switch to the search page.
Both SrhView () and PutView () do not switch the page.
.navigationBarTitle("Title", displayMode: .inline)
.navigationBarItems(
leading:
Button(action: {
SrhView()
}) {
Image(systemName: "magnifyingglass")
},
trailing:
Button(action: {
PutView()
}, label: {Text("PUt")}
))
Both SrhView () and PutView () do not switch the page.
.navigationBarTitle("Title", displayMode: .inline)
.navigationBarItems(
leading:
Button(action: {
SrhView()
}) {
Image(systemName: "magnifyingglass")
},
trailing:
Button(action: {
PutView()
}, label: {Text("PUt")}
))