In iOS 13 there is a new behaviour for modal view controller when being presented.
Now it\'s not fullscreen by default and when I try to slide down, the app just dis
Initially, the default value is fullscreen
for modalPresentationStyle, but in iOS 13 its changes to the UIModalPresentationStyle.automatic
.
If you want to make the full-screen view controller you have to change the modalPresentationStyle
to fullScreen
.
Refer UIModalPresentationStyle
apple documentation for more details and refer apple human interface guidelines for where should use which modality.