I want to replace the < Back
with <
My current attempt just adds a new NavigationItem.
struct ContentView: View {
var body: some View {
NavigationView {
NavigationLink(
destination: ContentView2(),
label: {
Button(action: {}, label: {
Text("Button")
}).disabled(true)
})
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
struct ContentView2: View {
var body: some View {
Text("wdfokjokjokjokjwdofjk")
.padding()
.navigationBarItems(leading: Image(systemName: "chevron.left").foregroundColor(.green))
}
}