Currently, I have a Navigation Link within a sheet. This creates a new page inside that sheet instead of taking up the full screen. Is there a way to dismiss the sheet and then present the view on the original screen?
Original view with a button pulling up a sheet:
Button {
userTappedItem = item
} label: {
...
}
.sheet(item: $userTappedItem) {
} content: { item in
NewView(item: item)
}
NavigationLink within NewView:
NavigationLink {
ViewIWantAsFullScreen()
} label: {
...
}