Popularity
3.9
Stable
Activity
2.0
-
222
4
34

Programming language: Swift
License: MIT License
Tags: UI    
Latest version: v0.3.0

UltraDrawerView alternatives and similar libraries

Based on the "UI" category.
Alternatively, view UltraDrawerView alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of UltraDrawerView or a related project?

Add another 'UI' Library

README

UltraDrawerView

let headerView = HeaderView()
headerView.translatesAutoresizingMaskIntoConstraints = false
headerView.heightAnchor.constraint(equalToConstant: 64).isActive = true

let tableView = UITableView()

let drawerView = DrawerView(scrollView: tableView, delegate: self, headerView: headerView)
drawerView.availableStates = [.top, .middle, .bottom]
drawerView.middlePosition = .fromBottom(256)
drawerView.cornerRadius = 16
drawerView.containerView.backgroundColor = .white
drawerView.setState(.middle, animated: false)

// More fluctuations 
drawerView.animationParameters = .spring(mass: 1, stiffness: 200, dampingRatio: 0.5)

// Default UIScrollView like behavior
drawerView.animationParameters = .spring(.default)

Example

[Example](Example/example.gif)

To run the example project, clone the repo and run bundle exec pod install from the Example directory first.

Installation

UltraDrawerView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'UltraDrawerView'

Author

Ilya Lobanov

License

UltraDrawerView is available under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the UltraDrawerView README section above are relevant to that project's source code only.