Releases: babylonhealth/DrawerKit
DrawerKit 0.7.0
-
DrawerKit now supports interactions with the presenting view. By default, the presenting view will receive touch events when the drawer is in the
collapsed
orpartiallyExpanded
state. This can be configured via the newpassthroughTouchesInStates
configuration. -
Drawer corner radius animation can now be disabled.
-
DrawerKit now has a new state,
dismissed
, to differentiate between beingcollapsed
(to a particular non-zero height) and being actually dismissed. -
It's possible to make the drawer visible on screen when in the
collapsed
state, via the new propertyheightOfCollapsedDrawer
in theDrawerPresentable
protocol. -
The drawer can now be presented in a particular initial state, via the new
initialState
configuration.
0.6.0
-
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)
DrawerKit 0.5.0
-
DrawerKit now supports
overCurrentContext
andoverFullScreen
modal presentations over the drawer. (#56) -
Fixed the issue of touches on the drawer being cancelled by the DrawerKit internal gesture recognizers. (#57)
-
UIControl
s within the drawer are now interactive when the drawer is partially expanded. (#57)
DrawerKit 0.4.1
- Reverses the fix for the issue about safe areas. The fix broke other things and the issue will need to be re-opened.
- Changes the minimum deployment target to 10.2.
DrawerKit 0.4.0
- Drawers can now have borders and shadows, all configurable.
- Fixed a bug by which dragging the drawer all the way to the top would not execute the animation completion block.
- Fixed a reported issue by which safe area insets were misbehaving.
- Removed the configuration parameter
hasHandleView
since it can be inferred from the value ofhandleViewConfiguration
, which is now an optional. - Fixed incorrect spelling in an enumeration case (
DrawerConfigurationFullExpansionBehaviour.doesNotCoverStatusBar
)
DrawerKit 0.3.4
- Adds a new configuration parameter for the handle view, namely, its vertical position with respect to the presented view's frame.
DrawerKit 0.3.3
- Fixes an issue where the presented view controller's view might not be laid out properly by the time the drawer's height is requested from it.
DrawerKit 0.3.2
-
Better support for concurrent animations: in previous versions, the actual presenting view controller wasn't necessarily what you'd think is the presenting view controller, which caused problems when trying to animate its view concurrently with the drawer animation. Now, although it's still the case that the presenting view controller may not be the view controller you think it is, the view controller that you think is the presenting view controller and which you add conformance to
DrawerAnimationParticipant
is the view controller whose animation closures get invoked. -
Notifications: it's now possible to subscribe to notifications indicating when the drawer is tapped (both in its interior and in its exterior), when drawer transitions are about to start, and when they're completed.
DrawerKit 0.3.0
Specific changes and new features are as follows:
-
Concurrent animations: it's now possible for either or both view controllers (presenting and presented) to participate in the drawer animation so that their views can be animated while the drawer is moving up and down.
-
Automatic display of a "handle view": it's now possible to have the drawer add a "gray bar" near its top. This bar, referred to as the "handle view", can be customised in its size, background color, and corner radius, and can be automatically dimmed as the drawer moves towards its collapsed or fully-expanded states. Or you can turn that off and throw your own.
-
Support for not expanding to cover the entire screen. It's now possible to select the behaviour of the drawer when it fully-expands itself. You may choose from covering the entire screen (the default), not covering the status bar, and leaving a gap at the top, of any desired size.
-
Partial transitions (collapsed to partially-expanded and partially-expanded to fully-expanded, and vice-versa) can now have durations that are equal to, or fractions of, the duration for a full-size transition (collapsed to fully-expanded, and vice-versa). This allows for transitions to have the same speed, if desired.
DrawerKit 0.1
This release has no functional changes. It only:
- adds a gif to the README
- fixes the circle CI badge
- updates the version number (it was mistakenly set to 0.0.1 before)