<PageControl ux:Name="pageControl" Transition="None">
<NavigationMotion GotoEasing="CircularOut" GotoDuration="0.5" Overflow="Open"/>
<WhileTrue ux:Name="canSwipeCard" Value="{canSwipe}">
<SwipeNavigate ux:Name="swipeNavigate" ForwardDirection="Right"/> <!-- TODO Also side (prev/next) cards don't appear as intended -->
</WhileTrue>
<Each Items="{movieList}">
<MovieCard />
</Each>
</PageControl>
but i noticed that whileTrue inside the pageControl doesn’t work whatever value i give it. If i try the same code without the PageControl it works as i want to. Is there another way i can limit the navigation whenever i want with the Observable canSwipe ?
Hello and thanks for the reply ( and sorry for my late reply ). The reason i used PageControl was because i have some page indicators on the bottom of my screen. The code is :
i used your code but i now can’t figure out how to use the PageIndicator code. In the Navigation property it asks to use a PageControl ux:Name. Is there a way to combine these two ?