问题 I'm working with SwiftUI and I have a starting page. When a user presses a button on this page, a modal sheet pops up. In side the modal sheet, I have some code like this: NavigationLink(destination: NextView(), tag: 2, selection: $tag) { EmptyView() } and my modal sheet view is wrapped inside of a Navigation View. When the value of tag becomes 2, the view does indeed go to NextView(), but it's also presented as a modal sheet that the user can swipe down from, and I don't want this. I'd like