Bug:
When you swipe down the view, it do not pull down gradually the sheet. When you swipe down enough it will close it suddenly. It was working great before and the bug appear only on iOS 14.
Code used :
`
let transitionDelegate = SPStorkTransitioningDelegate()
transitionDelegate.storkDelegate = navController
transitionDelegate.customHeight = viewController.panelHeight
transitionDelegate.confirmDelegate = navController
navController.transitioningDelegate = transitionDelegate
navController.modalPresentationStyle = .custom
self.topNavigationController().present(navController, animated: true, completion: nil)`