NavigationLink(destination: <#T##_#>, isActive: <#T##Binding<Bool>#>) not working.
I am using XCode 11.7.
I am getting the following error:
Editor placeholder in source file
This is my code:
ZStack{
NavigationLink(destination: SignUp(show: self.$show), isActive: self.$show){
//d in destination is highlighted
Text("")
}
.hidden()