Hi,
I am trying to use the sfBusyIndicator in xamarin.form, running the app on iOS, but it is not possible to see it, I have followed all instructions in the online documentation.
Copy the source code of my protection from iOS project:
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
LoadApplication(new App());
new SfBusyIndicatorRenderer();
return base.FinishedLaunching(app, options);
}
}
XAML xamarin.form:
<syncfusion:SfBusyIndicator x:Name="busyindicator"
Duration="1"
IsBusy="false"
AnimationType="HorizontalPulsingBox"
Title="Buscando noticias..."
ViewBoxWidth = "150"
ViewBoxHeight="150"
TextColor="#349C42" />
Source code in c# xamarin.form:
public News()
{
InitializeComponent();
this.busyindicator.IsBusy=true;
}
Note: I'm using the latest stable version of sfBusyIndicator, installed with Nugets and the latest version of xamarin.form, all properly updated.