Beautifiing Login Process

This commit is contained in:
2024-08-21 20:18:04 +02:00
parent 13db083891
commit 23ea92baf6
3 changed files with 15 additions and 17 deletions

View File

@@ -3,31 +3,27 @@
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">
x:Class="Jugenddienst_Stunden.Views.AboutPage"
Title="{Binding Title}">
<ContentPage.BindingContext>
<models:AboutViewModel />
</ContentPage.BindingContext>
<VerticalStackLayout Spacing="10" Margin="10">
<VerticalStackLayout Spacing="10" Margin="15">
<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" FontAttributes="Bold" Text="{Binding AppTitle}" VerticalOptions="End" />
<Label FontSize="22" Text="{Binding Version}" VerticalOptions="End" />
</HorizontalStackLayout>
<Label Text="{Binding Message}" />
<Label Text="{Binding Message}" HeightRequest="110" />
<zxing:CameraBarcodeReaderView x:Name="barcodeScannerView"
BarcodesDetected="BarcodesDetected"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand"
Margin="0,60,0,0"/>
VerticalOptions="FillAndExpand"/>
</VerticalStackLayout>