You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set drawer not cover the whole screen when full expansion. However, top corner mask disappeared. But I really want the corner exist when drawer not modal fully.
configuration.fullExpansionBehaviour to .leavesCustomGap(gap:135)
configuration.cornerAnimationOption =.alwaysShowBelowStatusBar
I have skimmed the Internal API. This may be caused cornerRadius set to 0 in animator's completionHandler.
Not sure this behavior indeed we want. And I temporary change that to get AppleMusic.app likely behavior. Please let me know If another configuration option could get the same behavior I want. 😃
// PresentationController+Animation.swift
if case DrawerConfiguration.FullExpansionBehaviour.leavesCustomGap(gap: _)=self.configuration.fullExpansionBehaviour {self.currentDrawerCornerRadius = maxCornerRadius
}else if maxCornerRadius !=0 && shouldSetCornerRadiusToZero {self.currentDrawerCornerRadius =0}
The text was updated successfully, but these errors were encountered:
I set drawer not cover the whole screen when full expansion. However, top corner mask disappeared. But I really want the corner exist when drawer not modal fully.
I have skimmed the Internal API. This may be caused cornerRadius set to 0 in animator's completionHandler.
Not sure this behavior indeed we want. And I temporary change that to get AppleMusic.app likely behavior. Please let me know If another configuration option could get the same behavior I want. 😃
The text was updated successfully, but these errors were encountered: