Reputation: 8767
I can't click on a NavigationLink
in a List
after the Xcode update to Beta 3. The row is gray for some reason.
Here's the code:
List {
Section {
NavigationLink(destination: Text("ProfileView")) {
Text("Profil")
}
NavigationLink(destination: Text("Einstellungen")) {
Text("Einstellungen und Datenschutz")
}
}
}
Upvotes: 4
Views: 3262
Reputation: 2268
List should be inside NavigationView,
Update your code as mentioned below,
NavigationView {
List {
Section {
NavigationLink(destination: Text("ProfileView")) {
Text("Profil")
}
NavigationLink(destination: Text("Einstellungen")) {
Text("Einstellungen und Datenschutz")
}
}
}
}
Upvotes: 7