2021-03-31 23:32:03 +02:00
|
|
|
<?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.ScanPage"
|
|
|
|
xmlns:i18n="clr-namespace:Borepin.Helpers"
|
2021-09-20 18:40:39 +02:00
|
|
|
xmlns:views="clr-namespace:Borepin.View">
|
2021-03-31 23:32:03 +02:00
|
|
|
<ContentPage.Content>
|
2021-09-20 18:40:39 +02:00
|
|
|
<ScrollView>
|
|
|
|
<StackLayout Style="{StaticResource Style_StackLayout_Content}">
|
2021-03-31 23:32:03 +02:00
|
|
|
<views:ScanView />
|
|
|
|
<Label Text="{i18n:Translate SetUp_ScanPage_Text}" Style="{StaticResource Style_Label_Text}"/>
|
|
|
|
<Button Text="{i18n:Translate SetUp_ScanPage_Button}" Command="{Binding NextCommand}" Style="{StaticResource Style_Button_Primary}"/>
|
|
|
|
</StackLayout>
|
2021-09-20 18:40:39 +02:00
|
|
|
</ScrollView>
|
2021-03-31 23:32:03 +02:00
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|