37 lines
1.7 KiB
XML
37 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:models="clr-namespace:Jugenddienst_Stunden.ViewModels"
|
|
xmlns:zxing="clr-namespace:ZXing.Net.Maui.Controls;assembly=ZXing.Net.MAUI.Controls"
|
|
x:Class="Jugenddienst_Stunden.Views.AboutPage">
|
|
|
|
<ContentPage.BindingContext>
|
|
<models:AboutViewModel />
|
|
</ContentPage.BindingContext>
|
|
|
|
<VerticalStackLayout Spacing="10" Margin="10">
|
|
<HorizontalStackLayout Spacing="10">
|
|
<Image Source="dotnet_bot.png"
|
|
SemanticProperties.Description="The dot net bot waving hello!"
|
|
HeightRequest="64" />
|
|
<Label FontSize="22" FontAttributes="Bold" Text="{Binding Title}" VerticalOptions="End" />
|
|
<Label FontSize="22" Text="{Binding Version}" VerticalOptions="End" />
|
|
</HorizontalStackLayout>
|
|
|
|
<Label Text="{Binding Message}" />
|
|
<Button Text="Learn more..." Command="{Binding ShowMoreInfoCommand}" />
|
|
|
|
<!--<scanner:CameraView x:Name="barcodeScannerView"
|
|
OnDetectionFinished="BarcodesDetected"
|
|
HorizontalOptions="FillAndExpand"
|
|
VerticalOptions="FillAndExpand" />-->
|
|
|
|
<zxing:CameraBarcodeReaderView x:Name="barcodeScannerView"
|
|
BarcodesDetected="BarcodesDetected"
|
|
HorizontalOptions="FillAndExpand"
|
|
VerticalOptions="FillAndExpand" />
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
</ContentPage> |