<Grid VerticalOptions="Start"> <busyindicator:SfBusyIndicator x:Name="act" AnimationType="ECG" ViewBoxHeight="150" ViewBoxWidth="150" BackgroundColor="Blue" TextColor="White" IsVisible="true" IsBusy="true" /> </Grid> |
<Grid HorizontalOptions="Start" VerticalOptions="Start"> <Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <busyindicator:SfBusyIndicator VerticalOptions="Start" Grid.Row="0" x:Name="act" AnimationType="ECG" ViewBoxHeight="150" ViewBoxWidth="150" BackgroundColor="Blue" TextColor="White" IsVisible="true" IsBusy="true" /> <StackLayout> <!-- Place new controls here --> <Label Text="Welcome to Xamarin.Forms!" HorizontalOptions="Center" Grid.Row="1" VerticalOptions="CenterAndExpand" /> </StackLayout> </Grid> |