Jittering animation Android

Hi,

Both in Flare and in another project I sometimes get a lot of jitter while scrolling. I don’t know how to reproduce it.

Here is a project that has experienced it:

    <Panel ux:Class="PageControlSaga">
        <Style>
            <Page>
                <EnteringAnimation>
                    <Move X="-1" RelativeTo="ParentSize"/>
                </EnteringAnimation>
                <ExitingAnimation>
                    <Move X="1" RelativeTo="ParentSize" Duration="0.5"/>
                </ExitingAnimation>
            </Page>
        </Style>
        <LinearNavigation ux:Name="TheNavigation" Easing="CircularOut" />
        <SwipeNavigate SwipeDirection="Left" SwipeEnds="Closed" />
    </Panel>
    <DockPanel>
        <Grid ux:Name="ButNav" Visibility="{ButNavVis}" ColumnCount="3" Dock="Top">
            <Image File="Assets/cat19.png" Margin="5" Clicked="{searchKatt}" Height="120">
                <Rectangle Fill="#49e" Layer="Background" CornerRadius="5" />
            </Image>
            <Image File="Assets/dog47.png" Margin="5" Clicked="{searchHund}" Height="120">
                <Rectangle Fill="#49e" Layer="Background" CornerRadius="5" />
            </Image>
            <Image File="Assets/baby23.png" Margin="5" Clicked="{searchBaby}" Height="120">
                <Rectangle Fill="#49e" Layer="Background" CornerRadius="5" />
            </Image>
        </Grid>
        <PageControlSaga>
            <Each Items="{data}">
                <Page HitTestMode="LocalBoundsAndChildren">
                    <Image>
                        <HttpImageSource Url="{}" />
                        <Clicked>
                            <Set ButNav.Visibility="Visible" />
                        </Clicked> 
                    </Image>
                </Page>
            </Each>
        </PageControlSaga>
    </DockPanel>

Thanks for reporting, however if we can’t reproduce it, it is hard to track it down. Let us know if you find a way to consistently reproduce it.