sharee.bike-App/Meinkonrad/TINK/View/RootShell/FlyoutFooter.xaml
2023-09-14 12:28:59 +02:00

45 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="menu_logo.png" />
<Label
Grid.Row="1"
HorizontalOptions="Start"
FontSize="12"
TextColor="{DynamicResource primary-back-title-color}"
TextType="Html"
Text="Powered by &lt;b&gt;Stadtwerke Konstanz&lt;/b&gt;"/>
<!--<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>