Unclaimed project
Are you a maintainer of DrawerKit? Claim this project to take control of your public changelog and roadmap.
Changelog
DrawerKit lets an UIViewController modally present another UIViewController in a manner similar to the way Apple's Maps app works.
Last updated about 3 years ago
DrawerKit now supports pull-to-dismiss driven by a UIScrollView inside the drawer content. (#58)
You may specify the UIScrollView to DrawerKit through its presentation controller:
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
// Install `tableView` as the pull-to-dismiss participant.
drawerPresentationController?.scrollViewForPullToDismiss = tableView
}
Drawer corners may now be configured in DrawerConfiguration to be always visible below the status bar. (#61)