PageIndicator inside a EdgeNavigator

hi all, i have an edgenavigator tha show a panel on swip the edge. now if in the main panel add pagecontrol and pageindicator assign to the pagecontrol, and in pageindicator use activatingAnimation, its not working. it seems that activatingAnimation run in every Circle and page indicator not animate on page change. in below sample u can see what i say.

<App Theme="Basic" Background="#eeeeeeff">
    <DockPanel>
        <iOS.StatusBarConfig ux:Name="statusBarConfig" Style="Light" IsVisible="true"/>
        <EdgeNavigator>
             <Panel Width="150" EdgeNavigation.Edge="Left" Background="#f63" />
        <Panel>
            <Style>
                <Text TextAlignment="Center" FontSize="16" TextWrapping="Wrap" Y="100" TextColor="#fff"/>
                <Image StretchMode="UniformToFill"/>
                <Page>
                    <EnteringAnimation>
                        <Move X="-1" RelativeTo="ParentSize"/>
                    </EnteringAnimation>
                    <ExitingAnimation>
                        <Move X="1" RelativeTo="ParentSize"/>
                    </ExitingAnimation>
                </Page>
            </Style>
            <PageIndicator Navigation="navigation" Alignment="BottomCenter" Margin="30">
                <Circle ux:Generate="Factory" ux:Binding="DotFactory" Width="10" Height="10" Margin="6">
                    <SolidColor ux:Name="color" Color="#999"/>
                    <ActivatingAnimation>
                        <Change color.Color="#fff" />
                    </ActivatingAnimation>
                </Circle>
            </PageIndicator>
            <Panel>
                <LinearNavigation ux:Name="navigation" Easing="CircularOut"/>
                <WhileTrue ux:Name="canSwipe" Value="true">
                    <SwipeNavigate ux:Name="swipeNavigate" SwipeDirection="Left" SwipeEnds="Closed"/>
                </WhileTrue>
                <Page>
                    <Text Width="60%">This button triggers the phone's vibrate function</Text>
                        <Button Text="Vibrate" Height="45" Alignment="Bottom" Margin="20,80">
                            <Clicked>
                                <Fuse.Vibration.Vibrate Duration="0.2"/>
                            </Clicked>
                        </Button>
                    <Image File="Assets/background1.png"/>
                </Page>
                <Page ux:Name="page2">
                    <Text Width="70%">This toggle switch disables your ability to swipe between pages</Text>
                    <Switch Alignment="BottomCenter" Margin="0,80">
                        <WhileTrue>
                            <Change canSwipe.Value="false"/>
                        </WhileTrue>
                    </Switch>
                    <Image File="Assets/background2.png"/>
                    <WhileActive Threshold="0.5">
                        <Change statusBarConfig.Style="Dark"/>
                    </WhileActive>
                </Page>
                <Page ux:Name="page3">
                    <Text Width="70%">This slider blurs the background image</Text>
                    <Slider Width="50%" Alignment="Bottom" Margin="0,80">
                        <ProgressAnimation>
                            <Change blur.Radius="5"/>
                        </ProgressAnimation>
                    </Slider>
                    <GraphicsView>
                        <Image File="Assets/background3.png" Margin="-10">
                            <Blur ux:Name="blur" Radius="0"/>
                        </Image>
                    </GraphicsView>
                </Page>
            </Panel>
        </Panel>
    </EdgeNavigator>
        <BottomBarBackground Dock="Bottom" />
    </DockPanel>
</App>

Hi!

The EdgeNavigator contains a Navigation and the PageIndicator is doing some searches for the nearest Navigation, I have filed a ticket for this bug. In the meantime you can use this workaround:

<PageIndicator Navigation="navigation" Navigation.Navigation="navigation" />