fix: size alloc issue when UpSideDown in iPhone

This commit is contained in:
Tsanie Lily 2020-05-18 09:27:32 +08:00
parent 5380a41b00
commit a13c1deca6
2 changed files with 11 additions and 1 deletions

View File

@ -93,6 +93,10 @@ namespace Pixiview.iOS.Renderers
var landscape =
lastOrientation == UIDeviceOrientation.LandscapeLeft ||
lastOrientation == UIDeviceOrientation.LandscapeRight;
if (UIDevice.CurrentDevice.UserInterfaceIdiom == UIUserInterfaceIdiom.Phone)
{
landscape |= lastOrientation == UIDeviceOrientation.PortraitUpsideDown;
}
page.OnOrientationChanged(landscape);
}
}

View File

@ -99,8 +99,14 @@ namespace Pixiview.UI
{
var m = margin;
var start = element.Margin.Top - m.Top;
#if DEBUG
if (start != 0)
{
App.DebugPrint($"{element.GetType()}, margin-top from {element.Margin.Top} to {margin.Top}");
}
#endif
element.Margin = m;
if (start != 0 && animate)
if (start > 0 && animate)
{
ViewExtensions.CancelAnimations(element);
element.Animate("margin", top =>