mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
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"
|
|
xmlns:version="clr-namespace:ShareeSharedGuiLib.View"
|
|
xmlns:local="clr-namespace:TINK.View;assembly=TINKLib"
|
|
x:Class="TINK.View.RootShell.FlyoutFooter">
|
|
<ContentView.Content>
|
|
<Grid Padding="20,0,0,0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="35" />
|
|
<RowDefinition Height="20"/>
|
|
<RowDefinition Height="30" />
|
|
</Grid.RowDefinitions>
|
|
<Image
|
|
Grid.Row="0"
|
|
HeightRequest="35"
|
|
HorizontalOptions="StartAndExpand"
|
|
Aspect="AspectFit"
|
|
Source="konrad_nobg.png" />
|
|
<Label
|
|
Grid.Row="1"
|
|
HorizontalOptions="Start"
|
|
FontSize="12"
|
|
TextColor="{DynamicResource primary-back-title-color}"
|
|
TextType="Html"
|
|
Text="Powered by <b>Stadtwerke Konstanz</b>"/>
|
|
<!--<Label
|
|
Grid.Row="2"
|
|
HorizontalOptions="Start"
|
|
FontSize="12"
|
|
TextColor="{DynamicResource primary-back-title-color}">
|
|
<Label.FormattedText>
|
|
<FormattedString>
|
|
<Span Text="powered by " />
|
|
<local:HyperlinkSpan Text="Stadtwerke Konstanz"
|
|
FontAttributes="Bold"
|
|
Url="https://www.stadtwerke-konstanz.de" />
|
|
</FormattedString>
|
|
</Label.FormattedText>
|
|
</Label>-->
|
|
<version:VersionNumberView x:Name="VersionNumber" Grid.Row="2"/>
|
|
</Grid>
|
|
</ContentView.Content>
|
|
</ContentView>
|