SwiftUI Full Screen Cover on iOS 13
Reading time: 1 min
This recipe shows how to use fullScreenCover on iOS 13 (or any SwiftUI version, for that matter). It provides a drop-in replacement, fullScreenCoverCompat
modifier that does the same trick regardless of what OS version you're running.
Reading time: 1 min
This recipe shows how to present multiple sheets or full screen covers on a single view in SwiftUI. It saves you from having to have multiple modifiers with isPresented
, each holding their own view. Also, it automatically takes care of switching between different sheets / covers with just a single binding.