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
{{ message }}
This repository was archived by the owner on May 24, 2022. It is now read-only.
I have a modified version of the menu the Xamarin ABS implementation and came across a bug with "CustomViewAbove.cs". The initialization of the interpolator caused a crash. At present my fix is to change how that is initialized; here's what I changed:
Line #27 CustomViewAbove.cs
private IInterpolator _interpolator;
Then where it is used, line 106, I changed that to this crude code:
try
{
if (_interpolator == null)
{
_interpolator = new CVAInterpolator();
}
_scroller = new Scroller(Context, _interpolator);
}
catch
{
_scroller = new Scroller(Context);
}
It was a quick fix for the error I ran into and needs a better solution but I figured I share what I've done with it so far.