I am currently trying to use iOS16's NavigationLink to show detail views for my list items, but for some reason the items seem to be disabled - does anyone know why this is happening?
NavigationLink(value: example) {
ListRowView(title: example.title,
subtitle: example.subtitle)
}
.navigationDestination(for: CollectionItem.self) { example in
Text(example.title)
}