wxr
2020-03-31 002a3f2e9d2f9579c01f88af12bd8a320003569f
Shared.IOS/UI/View.cs
@@ -18,9 +18,6 @@
   {
        ~View()
        {
#if DEBUG
            System.Console.WriteLine("=====" + GetType() + " " + Name);
#endif
            if (this is ViewGroup)
            {
                var viewGroup = this as ViewGroup;
@@ -650,7 +647,7 @@
               case Animate.DownToUp:
                  frame.Y += RealView.Frame.Height;
                  RealView.Frame = frame;
                  UIView.AnimateNotify(0.6f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
                  UIView.AnimateNotify(0.2f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
                  {
                     RealView.Frame = frameBefore;
                  }, null);
@@ -658,7 +655,7 @@
               case Animate.UpToDown:
                  frame.Y -= RealView.Frame.Height;
                  RealView.Frame = frame;
                  UIView.AnimateNotify(0.6f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
                  UIView.AnimateNotify(0.2f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
                  {
                     RealView.Frame = frameBefore;
                  }, null);