In case anyone else having a similar problem. Using following with NavigationStack solved the problem for me. As explained in these documents,
https://developer.apple.com/documentation/swiftui/navigationlink
https://developer.apple.com/documentation/swiftui/migrating-to-new-navigation-types
NavigationLink {
FolderDetail(id: workFolder.id)
} label: {
Label("Work Folder", systemImage: "folder")
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: