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?
The easiest one. The content for each item in the list.
ZStack { NavigationLink(destination: DetailView()) { EmptyView() }.hidden() RowView() }