This is an alternative to the modalFullScreen presentation style where it presents like fullScreen but allows you to swipe to dismiss with a gesture and nice AnimationFormatString
It mimics the system in terms of how it looks and behaves with velocity and speed
Based off ViewControllerTransitionExample
Coming soon...
Use the animation with a few simple steps
class CustomViewController: UIViewController, ModalTransitionPresentable {
var transitionManager: UIViewControllerTransitioningDelegate?
}let viewController = UIViewController()
viewController.configureForModalTransition()
present(viewController, animated: true)