Hello
When I dismiss my .sheet it is very slow and sometimes it doesn't work
How do I fix it?
Thank You
When I dismiss my .sheet it is very slow and sometimes it doesn't work
Code Block .sheet(isPresented: $myViewi) { MyView() }
Code Block @Environment(\.presentationMode) var presentationMode
Code Block .navigationBarItems(trailing: Button(action: { presentationMode.wrappedValue.dismiss() }) { Image(systemName: "xmark").font(.title).foregroundColor(.blue) } )
How do I fix it?
Thank You