Have spent 2 hours on this without success, and have not found any info on-line. I've put together a list of items (regular swiftui list) and when I add a Navigation Link, it modifies the list item view to add a ">" symbol to the right of the list item.
This is the current code from the list view (calls a sub-view - that works perfect, but I don't want the ">" symbol appearing on each item.
List ($viewModel.teams) { Team in
NavigationLink(destination: GroupMembersView(user: user, team: Team)) {
GroupsCellView(team: Team)
}.buttonStyle(PlainButtonStyle())
}.listStyle(.plain)
Here is a picture of the nav view & undesired symbol (symbol appears on the right hand side of every item in list):
How can I remove this symbol? -thanks!