Do you have a complex example of sfBusyIndicator working with data binding? I have tried to get it to work but no luck. Below is an example of a semi-complex page.
xmlversion="1.0"encoding="UTF-8"?>
<ContentPagexmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:sf="clr-namespace:Syncfusion.SfBusyIndicator.XForms;assembly=Syncfusion.SfBusyIndicator.XForms"
xmlns:vm="clr-namespace:ViewModels;"
xmlns:c="clr-namespace:Controls;"
x:Class="Views.LandingPage"
BackgroundColor="{StaticResourcePrimary}"
Padding="0"NavigationPage.BackButtonTitle="">
<ContentPage.BindingContext>
<vm:LandingViewModel/>
ContentPage.BindingContext>
<ContentPage.ToolbarItems>
<ToolbarItemx:Name="toolbarItem"
Command="{BindingDisplayBirthdayCommand}"
IsEnabled="{BindingIsNameAndNicknameReady}"
Text="{BindingNextText}"/>
ContentPage.ToolbarItems>
<ContentPage.Content>
<ScrollView>
<StackLayout>
<ImageMargin="0,51,0,0"Source="Logo"/>
<LabelMargin="35,20,35,0"
Style="{StaticResourceHeadingLabel}"
Text="{BindingHeadingText}"/>
<c:KBEntryx:Name="entryName"Margin="35,20,35,9"
Placeholder="What'syourname?"
ReturnKey="Next"
Text="{BindingName}"/>
<c:KBEntryx:Name="entryNickname"Margin="35,0,35,0"
Placeholder="WhatshouldIcallyou?"
ReturnKey="Next"
Text="{BindingNickname}"/>
<LabelMargin="0,14,0,10">
<Label.FormattedText>
<FormattedString>
<SpanText="or"FontSize="14"/>
<SpanText="Login"FontSize="14"
FontAttributes="Bold"/>
FormattedString>
Label.FormattedText>
<Label.GestureRecognizers>
<TapGestureRecognizer
Command="{BindingDisplayLoginCommand}"/>
Label.GestureRecognizers>
Label>
<LabelMargin="-7"Text="BytappingNext,youagreetothe"/>
<StackLayoutHorizontalOptions="Center"Orientation="Horizontal">
<LabelHeightRequest="11.5"
Style="{StaticResourceLinkLabel}"
Text="TermsofService">
<Label.GestureRecognizers>
<TapGestureRecognizer
Command="{BindingDisplayTermsOfServiceCommand}"/>
Label.GestureRecognizers>
Label>
<LabelText="and"/>
<LabelStyle="{StaticResourceLinkLabel}"
Text="PrivacyPolicy">
<Label.GestureRecognizers>
<TapGestureRecognizer
Command="{BindingDisplayPrivacyPolicyCommand}"/>
Label.GestureRecognizers>
Label>
StackLayout>
<sf:SfBusyIndicatorAnimationType="DoubleCircle"
IsBusy="{BindingIsBusy}"
ViewBoxHeight="50"ViewBoxWidth="50"/>
StackLayout>
ScrollView>
ContentPage.Content>
ContentPage>