diff --git a/src/Uno.UI/UI/Xaml/MobileLayoutingHelpers.cs b/src/Uno.UI/UI/Xaml/MobileLayoutingHelpers.cs index 4887c1fbf901..176ce9408c4a 100644 --- a/src/Uno.UI/UI/Xaml/MobileLayoutingHelpers.cs +++ b/src/Uno.UI/UI/Xaml/MobileLayoutingHelpers.cs @@ -56,6 +56,8 @@ public static Size MeasureElement(View view, Size availableSize) var desiredSizeFromLayouterElement = layouterElement.Measure(availableSize); LayoutInformation.SetDesiredSize(view, desiredSizeFromLayouterElement); LayoutInformation.SetAvailableSize(view, availableSize); + + view.InvalidateArrangeOnNativeOnly(); return desiredSizeFromLayouterElement; }