mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
19 lines
1.1 KiB
XML
19 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Borepin.Page.StartPage"
|
|
xmlns:resource_text="clr-namespace:Borepin.Resources.Text">
|
|
<ContentPage.Content>
|
|
<StackLayout Padding="20">
|
|
<StackLayout IsVisible="{Binding IsBusy}" VerticalOptions="CenterAndExpand">
|
|
<Label Text="{x:Static resource_text:TextResource.StartPage_Starting}" Style="{StaticResource Style_Label_Text_Center}"/>
|
|
<ActivityIndicator IsRunning="{Binding IsBusy}"/>
|
|
</StackLayout>
|
|
<ActivityIndicator IsRunning="{Binding IsBusy}"/>
|
|
<StackLayout IsVisible="{Binding IsConnecting}" VerticalOptions="CenterAndExpand">
|
|
<Label Text="{x:Static resource_text:TextResource.StartPage_Connecting}" Style="{StaticResource Style_Label_Text_Center}"/>
|
|
<ActivityIndicator IsRunning="{Binding IsConnecting}"/>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</ContentPage.Content>
|
|
</ContentPage> |