I have the following issue with LayoutTo
- I call LayoutTo to animate a AbsoluteLayout view (this works fine)
... the AbsoluteLayout view has number of subviews; some are hidden (Image & Label)
... i have a sequence where I hide a visible image & label and unhide a hidden image & label - after doing the hide / unhide - the AbsoluteLayout is reset to it's original position
This was broken in the previous .forms version as well
LayoutTo code
.
Rectangle oldBounds = vwCommand.Bounds;
Rectangle newBounds = new Rectangle (new Point (oldBounds.X, oldBounds.Y - (130 * V.Scale)), oldBounds.Size);
vwCommand.LayoutTo (newBounds, 800, Easing.SinOut);