File tree Expand file tree Collapse file tree 4 files changed +14
-13
lines changed
SwiftUINavigationTransitions
UIKitNavigationTransitions Expand file tree Collapse file tree 4 files changed +14
-13
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -3,19 +3,6 @@ import RuntimeAssociation
3
3
import RuntimeSwizzling
4
4
public import UIKit
5
5
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
-
19
6
public struct UISplitViewControllerColumns : OptionSet {
20
7
public static let primary = Self ( rawValue: 1 )
21
8
public static let supplementary = Self ( rawValue: 1 << 1 )
You can’t perform that action at this time.
0 commit comments