Go to file
Jordan Pichler b2f5bd7d16
Add completion block to present function (#94)
2020-04-21 11:16:30 -07:00
PanModal Add completion block to present function (#94) 2020-04-21 11:16:30 -07:00
PanModalDemo.xcodeproj Swift 5.0 Support 2019-11-11 10:26:03 -08:00
Sample Added the ability to select a color for the background of the pan modal container (#54) 2019-10-01 15:53:39 -07:00
Screenshots Update panModal.gif 2019-02-27 17:29:40 -08:00
Tests Add customizable drag indicator background color (#62) 2019-10-28 12:57:36 -07:00
.gitignore Initial commit 2019-02-27 02:42:26 -08:00
CONTRIBUTING.md Update CONTRIBUTING.md 2019-03-14 11:04:31 -07:00
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md 2019-03-13 12:54:02 -07:00
LICENSE Initial commit 2019-02-27 02:42:26 -08:00
PULL_REQUEST_TEMPLATE.md Update PULL_REQUEST_TEMPLATE.md 2019-03-13 13:00:50 -07:00
Package.swift Initial SPM Support 2019-11-11 10:52:18 -08:00
PanModal.podspec bump version number. 2020-03-30 12:33:24 -07:00
README.md Update README.md 2020-03-24 17:10:08 -07:00

README.md

PanModal is an elegant and highly customizable presentation API for constructing bottom sheet modals on iOS.

Screenshot Preview

Platform: iOS 10.0+ Language: Swift 5 CocoaPods compatible Carthage compatible License: MIT

FeaturesCompatibilityInstallationUsageDocumentationContributingAuthorsLicense

Read our blog on how Slack is getting more 👍 with PanModal

Swift 4.2 support can be found on the Swift4.2 branch.

Features

  • Supports any type of UIViewController
  • Seamless transition between modal and content
  • Maintains 60 fps performance

Compatibility

PanModal requires iOS 10+ and is compatible with Swift 4.2 projects.

Installation

pod 'PanModal'
github "slackhq/PanModal"
dependencies: [
  .package(url: "https://github.com/slackhq/PanModal.git", .exact("1.2.6")),
],

Usage

PanModal was designed to be used effortlessly. Simply call presentPanModal in the same way you would expect to present a UIViewController

.presentPanModal(yourViewController)

The presented view controller must conform to PanModalPresentable to take advantage of the customizable options

extension YourViewController: PanModalPresentable {

    var panScrollable: UIScrollView? {
        return nil
    }
}

PanScrollable

If the presented view controller has an embedded UIScrollView e.g. as is the case with UITableViewController, panModal will seamlessly transition pan gestures between the modal and the scroll view

class TableViewController: UITableViewController, PanModalPresentable {

    var panScrollable: UIScrollView? {
        return tableView
    }
}

Adjusting Heights

Height values of the panModal can be adjusted by overriding shortFormHeight or longFormHeight

var shortFormHeight: PanModalHeight {
    return .contentHeight(300)
}

var longFormHeight: PanModalHeight {
    return .maxHeightWithTopInset(40)
}

Updates at Runtime

Values are stored during presentation, so when adjusting at runtime you should call panModalSetNeedsLayoutUpdate()

func viewDidLoad() {
    hasLoaded = true

    panModalSetNeedsLayoutUpdate()
    panModalTransition(to: .shortForm)
}

var shortFormHeight: PanModalHeight {
    if hasLoaded {
        return .contentHeight(200)
    }
    return .maxHeight
}

Sample App

Check out the Sample App for more complex configurations of PanModalPresentable, including navigation controllers and stacked modals.

Documentation

Option + click on any of PanModal's methods or notes for detailed documentation.

Screenshot Preview

Contributing

We're glad to be open sourcing this library. We use it in numerous places within the slack app and expect it to be easy to use as well as modify; we've added extensive documentation within the code to support that.

We will only be fixing critical bugs, thus, for any non-critical issues or feature requests we hope to be able to rely on the community using the library to add what they need. For more information, please read the contributing guidelines.

Authors

Stephen SowoleTosin Afolabi

License

PanModal is released under a MIT License. See LICENSE file for details.