how can i present a modal that will take up the fullscreen and can't be dismissed by swiping it down? Currently I am using .sheet
on a view to present a modal that is dismissible.
I haven't noticed any beta changes in Xcode that changes this behavior.
Any help would be appreciated :)
SwiftUI 1.0
I'm not sure if this what you'd want to go with but it's possible to create your own modal screen by using the ZStack and a state variable to control the hiding/showing of it.
Code
Example
(Excerpt from "SwiftUI Views" book) So here, your popup is small, but you can adjust the dimensions to make it fullscreen with the frame modifier that is on that VStack.