mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
21 lines
639 B
XML
21 lines
639 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="ShareeSharedGuiLib.View.VersionNumberView">
|
|
<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>
|