I'm using Xcode 11 since a few days. From the startup screen you can press a button to go to the next screen via a show-segue. In this second screen you can swipe down. This results in returning to the startup screen. However I expected that this behavior is only possible for modal screens, using the Present Modally segue.
I tried the different segue kinds (Show, Show Detail, Present Modally, Present as Popover), but they all result in that the second screen can be swiped down. I tried to use isModalInPresentation = true, but this the user can still pull down the window (however it does not get dismissed).
I expect that the second screen is as the startup screen which cannot be dismissed by pulling it down, nor give the feeling it is a modal dialog (which it isn't to begin with).