fix: size alloc issue when UpSideDown in iPhone
This commit is contained in:
parent
5380a41b00
commit
a13c1deca6
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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 =>
|
||||
|
Loading…
x
Reference in New Issue
Block a user