Do you think we can override the gestureRecognizerShouldBegin, so we can have this presented in a modal? That way it disables the pan gesture on the signature view. (preventing from dismissing the modal) I'm having this issue https://stackoverflow.com/questions/56718552/disable-gesture-to-pull-down-form-page-sheet-modal-presentation ``` override func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool { !(gestureRecognizer is UIPanGestureRecognizer) } ``` Thanks 👍