I think this happens because the presentationMode
is not inherited from the presenter view, so the presenter didn’t know that the modal is already closed. You can fix this by adding presentationMode
to presenter, in this case to ContentView.
struct ContentView: View {
@Environment(\.presentationMode) var presentation
@State var showSheet = false
var body: some View {
NavigationView {
VStack {
Text("Test")
}.sheet(isPresented: self.$showSheet) {
ModalView()
}.navigationBarItems(trailing:
Button(action: {
self.showSheet = true
}) {
Text("SecondView")
}
)
}
}
}
Tested on Xcode 12.5.
Here is the full working
example.