Inspired by this X post
demo.mp4
https://github.com/gtokman/OhSheet
.sheet(isPresented: $isPresented) {
Text("FullScreen Sheet")
.presentationBackground(.blue)
.fullScreenSheet() // Add this
}
.sheet(isPresented: $isPresented) {
Text("FullScreen Sheet")
.presentationBackground(.blue)
.sheet(with: [.full()]) // detents
}