PaoloCuscela / Cards

Awesome iOS 11 appstore cards in swift 5.
MIT License
4.2k stars 273 forks source link

IOS14 XCODE BETA 4 : Return black screen after dismiss CardView #140

Open WhiteAvocad0 opened 3 years ago

WhiteAvocad0 commented 3 years ago

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

domogami commented 3 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

coderluka commented 3 years ago

see issue it worked for me Cheers!

domogami commented 3 years ago

I was able to get it working! It's so smooth and fluid!

santespatel commented 2 years ago

having same black screen issue after dismiss present View ?

please anyone help

Dreamer4ik commented 2 years ago

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