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