• Stars
    star
    222
  • Rank 172,632 (Top 4 %)
  • Language
    Swift
  • License
    MIT License
  • Created over 5 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🐝 Super ultra drawer view

UltraDrawerView

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

let tableView = UITableView()

let drawerView = DrawerView(scrollView: tableView, 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

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.