Open WhiteAvocad0 opened 4 years ago
I'm having the same issue! Does anyone have any fixes? Version: Xcode 11 with iOS 13 Issue: Returns a black screen after dismissing detail view Also attempted changing the cardContentVC.modalPresentationStyle = .fullScreen
I was able to get it working! It's so smooth and fluid!
having same black screen issue after dismiss present View ?
please anyone help
In the function "shouldPresent" of file Card.swift add the following code: under detailVC.isFullscreen = fullscreen need add if fullscreen { detailVC.modalPresentationStyle = .fullScreen } else { detailVC.modalPresentationStyle = .currentContext }
it worked for me
Hi there, Version : Xcode 12 beta4 with IOS 14 Issue : Return to black screen after dismiss detail view tried to change cardContentVC.modalPresentationStyle = (.fullScreen) but not working for me