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?
You can also put it in the .background modifier:
.background
List { Text("Go to...") .background(NavigationLink("", destination: Text("Detail View"))) }
If you already have the background modifier on the Text, you can wrap the Text in a HStack and apply background to the HStack.
background