Skip to content

Commit 000cd50

Browse files
committed
WIP
1 parent 90a73bb commit 000cd50

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
public import NavigationTransition
2+
3+
extension AnyNavigationTransition {
4+
public enum Interactivity {
5+
case disabled
6+
case edgePan
7+
case pan
8+
9+
@inlinable
10+
public static var `default`: Self {
11+
.edgePan
12+
}
13+
}
14+
}

Sources/UIKitNavigationTransitions/NavigationTransition+UIKit.swift renamed to Sources/UIKitNavigationTransitions/UIKitSupport.swift

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,6 @@ import RuntimeAssociation
33
import RuntimeSwizzling
44
public import UIKit
55

6-
extension AnyNavigationTransition {
7-
public enum Interactivity {
8-
case disabled
9-
case edgePan
10-
case pan
11-
12-
@inlinable
13-
public static var `default`: Self {
14-
.edgePan
15-
}
16-
}
17-
}
18-
196
public struct UISplitViewControllerColumns: OptionSet {
207
public static let primary = Self(rawValue: 1)
218
public static let supplementary = Self(rawValue: 1 << 1)

0 commit comments

Comments
 (0)