Hi there!
Whenever we would like to use NavigationLink, we need to wrap it around NavigationView. In this way, the gray / disabled background will be gone!
NavigationView {
List {
ForEach(1..<6) { i in
NavigationLink("\(i)") {
Text("\(i)");
}
}
}
}
Good luck!