Skip to content

Commit

Permalink
⭐️ Impl: notifyOnSytemSheetPanGestureInvoked
Browse files Browse the repository at this point in the history
Summary:
* Impl. `SheetViewControllerEventsNotifiable.notifyOnSytemSheetPanGestureInvoked`
  • Loading branch information
dominicstop committed Sep 27, 2024
1 parent 6d30cd2 commit c1d08e9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ios/Temp/SheetViewControllerEventsNotifiable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ public protocol SheetViewControllerEventsNotifiable: AnyObject {
sender: UIViewController,
presentationController: UIPresentationController
);

func notifyOnSytemSheetPanGestureInvoked(
sender: UIViewController,
panGesture: UIPanGestureRecognizer,
gesturePoint: CGPoint
);
};

// MARK: - SheetViewControllerEventsNotifiable
Expand Down Expand Up @@ -51,4 +57,12 @@ public extension SheetViewControllerEventsNotifiable {
) {
// no-op
};

func notifyOnSytemSheetPanGestureInvoked(
sender: UIViewController,
panGesture: UIPanGestureRecognizer,
gesturePoint: CGPoint
) {
// no-op
};
};

0 comments on commit c1d08e9

Please sign in to comment.