When making a List with a row that pushes to a new view, SwiftUI adds a disclosure indicator \">\" automatically? How do I remove it if I don\'t want it?
As workaround I can suggest to add .padding modifier like this:
NavigationView { List { NavigationButton(destination: DetailView()) { ListItem() } } .navigationBarTitle(Text("Some title")) } .padding(.trailing, -32.0)
So you will get rows without visible disclosure: