We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! I've noticed that side shadow disappears before closing menu animation ends. It happens on both sides.
I've fixed it with this implementation of CloseMenu in Sidebar.cs
CloseMenu
public void CloseMenu(bool animate = true) { if (!IsOpen || Disabled) return; MenuViewController.View.EndEditing(true); UIView.AnimateNotify(animate ? Sidebar.SlideSpeed : 0, 0, UIViewAnimationOptions.CurveEaseInOut, () => { _sidebarContentArea.CloseAnimation(); _sidebarContentArea.AfterCloseAnimation(TapGesture); IsOpen = false; }, (finished) => { if (finished) HideShadow(); }); }
Basically same as original but used AnimateNotify wrapper to have completion handler
AnimateNotify
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
I've noticed that side shadow disappears before closing menu animation ends.
It happens on both sides.
I've fixed it with this implementation of
CloseMenu
in Sidebar.csBasically same as original but used
AnimateNotify
wrapper to have completion handlerThe text was updated successfully, but these errors were encountered: