mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 14:51:44 +01:00
16 lines
1.0 KiB
XML
16 lines
1.0 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.SetUpProcess.WelcomePage"
|
|
xmlns:resource_text="clr-namespace:Borepin.Resources.Text"
|
|
Title="FabAccess">
|
|
<ContentPage.Content>
|
|
<ScrollView>
|
|
<StackLayout Style="{StaticResource Style_StackLayout_Content}">
|
|
<Label Text="{x:Static resource_text:TextResource.SetUpProcess_WelcomePage_Title}" Style="{StaticResource Style_Label_Title_Center}"/>
|
|
<Label Text="{x:Static resource_text:TextResource.SetUpProcess_WelcomePage_Text}" Style="{StaticResource Style_Label_Text_Center}"/>
|
|
<Button Text="{x:Static resource_text:TextResource.SetUpProcess_WelcomePage_Button}" Command="{Binding NextCommand}" Style="{StaticResource Style_Button_Primary}"/>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</ContentPage.Content>
|
|
</ContentPage> |