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 of beta 6, this works well:
struct SwiftUIView: View { var body: some View { NavigationView { List { HStack { Text("My Cell Content") NavigationLink(destination: Text("destination"), label: { EmptyView() }) } } } } }