SplitViewSnapBehavior
public enum SplitViewSnapBehavior : Equatable
The specefied snap behavior
-
Snap every 25% (0%, 25%, 50%, 75%, 80%) with the default tolerance
Declaration
Swift
case quarter
-
Snap every 33% (0%, 33%, 66%, 100%) with a the default tolerance
Declaration
Swift
case third
-
Snap at a given percentage and tolerance
Declaration
Swift
case custom(percentage: CGFloat, tolerance: CGFloat)
-
Snap at a given SnapPoint
Declaration
Swift
case withPoint(SplitViewSnapPoint)
-
Snap at the given SnapPoints
Declaration
Swift
case withPoints([SplitViewSnapPoint])