Replaced the default ActivityIndicator
with a ProgressRing
on UWP. The renderer displays perfectly on a ContentPage
, but when the same page is displayed via a NavigationPage
, the renderer fails to appear.
MainPage = new NavigationPage(new ProgressRing.MainPage());
is uncommented. Run.MainPage = new NavigationPage(new ProgressRing.MainPage());
and uncomment MainPage = new ProgressRing.MainPage();
. Run.I have same issue but with default activity indicator(ProgressBar) on UWP
Duplicate of https://github.com/xamarin/Xamarin.Forms/issues/1483
This is still a problem in forms version 3.0.0.482510.
As stated above it works on a contentpage, but not when one uses a NavigationPage.
I've compared the UWP Visual tree of an app that is using a ContentPage to one that is using a NavigationPage, and on the ContentPage there is a DeterminateRoot (border) as the last child of the FormsProgressBar that has an Animation and Visual State property (ie the storyboard is running). However on the NavigationPage version the DeterminateRoot (border) is present but the Animation and Visual State property is missing, ie, the storyboard is not running.