11 lines
562 B
XML
11 lines
562 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="MobileApp1.Views.LoadingIndicatorView">
|
|
<ContentView.Content>
|
|
<StackLayout>
|
|
<ActivityIndicator x:Name="activityIndicator1" Margin="0, 0, 0, 0" />
|
|
<Label x:Name="label1" Text="" HorizontalTextAlignment="Center" Margin="0, 10, 0, 0" TextColor="{StaticResource Danger}" />
|
|
</StackLayout>
|
|
</ContentView.Content>
|
|
</ContentView> |