I want to show a list in fullscreenCover and navigate another View from there but unfortunately when I click Items in list nothing happens. If anyone can help, I would be happy... here is example code
Button("New Message"){
shownFCover.toggle()
}.fullScreenCover(isPresented: $shownFCover) {
VStack {
Button("Close"){
shownFCover.toggle()
}
List {
ForEach(0..<16) { index in
NavigationLink {
Text("Hello")
} label: {
HStack{
Image(systemName: "\(index).circle.fill").font(.title).foregroundColor(.red)
Text("\(index). Item")
}
}
}
}
}
}