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")
}
}
}
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")
}
}
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With