From c1d08e9cd26c5b24a9f105c8592a06d6aa0fdf17 Mon Sep 17 00:00:00 2001 From: Dominic Go Date: Fri, 27 Sep 2024 09:29:53 +0800 Subject: [PATCH] =?UTF-8?q?=E2=AD=90=EF=B8=8F=20Impl:=20`notifyOnSytemShee?= =?UTF-8?q?tPanGestureInvoked`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: * Impl. `SheetViewControllerEventsNotifiable.notifyOnSytemSheetPanGestureInvoked` --- ios/Temp/SheetViewControllerEventsNotifiable.swift | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ios/Temp/SheetViewControllerEventsNotifiable.swift b/ios/Temp/SheetViewControllerEventsNotifiable.swift index 87dd1edf..8ab74d07 100644 --- a/ios/Temp/SheetViewControllerEventsNotifiable.swift +++ b/ios/Temp/SheetViewControllerEventsNotifiable.swift @@ -24,6 +24,12 @@ public protocol SheetViewControllerEventsNotifiable: AnyObject { sender: UIViewController, presentationController: UIPresentationController ); + + func notifyOnSytemSheetPanGestureInvoked( + sender: UIViewController, + panGesture: UIPanGestureRecognizer, + gesturePoint: CGPoint + ); }; // MARK: - SheetViewControllerEventsNotifiable @@ -51,4 +57,12 @@ public extension SheetViewControllerEventsNotifiable { ) { // no-op }; + + func notifyOnSytemSheetPanGestureInvoked( + sender: UIViewController, + panGesture: UIPanGestureRecognizer, + gesturePoint: CGPoint + ) { + // no-op + }; };