2022-09-16 11:19:46 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2024-04-09 12:53:23 +02:00
|
|
|
x:Class="SharedGui.View.VersionNumberView">
|
2022-09-16 11:19:46 +02:00
|
|
|
<ContentView.Content>
|
|
|
|
<StackLayout HorizontalOptions="Center"
|
|
|
|
Orientation="Horizontal"
|
|
|
|
Padding="0,0,0,10">
|
|
|
|
<Label
|
|
|
|
HorizontalOptions="End"
|
|
|
|
FontSize="12"
|
|
|
|
TextColor="DimGray"
|
|
|
|
Text="App Version"/>
|
|
|
|
<Label
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
FontSize="12"
|
|
|
|
TextColor="DimGray"
|
|
|
|
x:Name="CurrentAppVersionNumber"/>
|
|
|
|
</StackLayout>
|
|
|
|
</ContentView.Content>
|
|
|
|
</ContentView>
|