The current default behavior on presenting view controller modally is that the presenting view controller decreases size in background which shows the application window behind it with default window color.
I have the presented view controller at its default state. didn't change any transition properties:
self.present(presentedControler, animated: true, completion: nil)
How to prevent the presenting view controller from getting resized in background?
Note I want the presenting view controller to stay in fullscreen not the presented view controller.