Reusable iOS's behavior to pop ViewController base on SwipeRightToPopController:
- Swipe from Right to Left to pop ViewController.
- Customize base on
velocity
- Customize base on
- Drag from Right to Left to pop ViewController.
- Customize base on
percent
of distance with the screen width
- Customize base on
- Xcode 11+
- Swift 5.0+
There are three ways to install DLSwipeToPopController
Just add to your project's Podfile
:
pod 'DLSwipeToPopController', '~> 1.1'
Add following to Cartfile
:
github "lengocduy/DLSwipeToPopController" ~> 1.1
Create a Package.swift
file:
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "TestSwipeToPopController",
dependencies: [
.package(url: "https://github.com/lengocduy/DLSwipeToPopController.git", from: "1.1.4"),
],
targets: [
.target(
name: "TestSwipeToPopController",
dependencies: ["DLSwipeToPopController"])
]
)
DLSwipeToPopController is available under the MIT license. See the LICENSE file for more info.