PageControl inside a ScrollView

I am currently having a strange behavior with a PageControl in a ScrollView.
With the PageControl, I am trying to each through a list of images and create a gallery.
This is working fine.
But I created some Changes to the height of the PageControl, in a ScrollingAnimation, which results in not displaying the images correctly.

Here is what one of the images is looking like after scrolling:

file

<ScrollView>
      <ScrollingAnimation From="0" To="500">
        <Change backgroundPictureImage.Height="150" Easing="QuadraticOut"/>
      </ScrollingAnimation>

       <ScrollingAnimation From="0" To="-1500">
         <Change backgroundPictureImage.Height="800" Easing="QuadraticOut"/>
	</ScrollingAnimation>


      <PageControl ux:Name="backgroundPictureImage" Alignment="Top" Height="200">
        <Each Items="{images}">
          <Page>
            <Image LayoutMaster="backgroundPictureImage" ContentAlignment="TopCenter" TransformOrigin="Anchor" Url="{}" StretchMode="UniformToFill" />
          </Page>
        </Each>
      </PageControl>
</ScrollView>

Is this a bug or did I missed something here?

Please post a complete reproduction, I am unable to end up with anything like you’ve shown in the picture with the code you posted.

Also, please include details about your OS, Fuse version and the target you’re testing on - is it local preview, iOS or Android? Is it the same on all targets?

I was testing on the local preview.

Today I tried my code again, without any changes.
I don’t know if it was the update to 1.6.1 (I was using 1.6.0 before on a Windows 10 64-Bit Version 1709) but it’s working perfectly now.

Anyway, thank you for trying to help me out here!