I have this list of images, and they correctly terminate using the same class that you are using, this could be due to LayoutOptions:
WrapLayout container = new WrapLayout { VerticalOptions = LayoutOptions.FillAndExpand, HorizontalOptions = LayoutOptions.StartAndExpand, Orientation = StackOrientation.Horizontal, Padding = 10, Spacing = 10 }; Image thumbnail = new Image { HeightRequest = 80, WidthRequest = 80, HorizontalOptions = LayoutOptions.Start, VerticalOptions = LayoutOptions.Start, //BackgroundColor = Color.Black Source = item.ImageText, Aspect = Aspect.AspectFit };
source share