sharee.bike-App/Meinkonrad/TINK/View/RootShell/FlyoutFooter.xaml

45 lines
1.7 KiB
Plaintext
Raw Normal View History

2022-09-16 11:19:46 +02:00
<?xml version="1.0" encoding="utf-8" ?>
2022-04-10 17:38:34 +02:00
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
2022-08-30 15:42:25 +02:00
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
2022-09-16 11:19:46 +02:00
xmlns:version="clr-namespace:ShareeSharedGuiLib.View"
2022-08-30 15:42:25 +02:00
xmlns:local="clr-namespace:TINK.View;assembly=TINKLib"
2022-04-10 17:38:34 +02:00
x:Class="TINK.View.RootShell.FlyoutFooter">
2022-09-16 11:19:46 +02:00
<ContentView.Content>
<Grid Padding="20,0,0,0">
<Grid.RowDefinitions>
<RowDefinition Height="35" />
<RowDefinition Height="20"/>
<RowDefinition Height="30" />
</Grid.RowDefinitions>
<Image
2022-08-30 15:42:25 +02:00
Grid.Row="0"
HeightRequest="35"
HorizontalOptions="StartAndExpand"
Aspect="AspectFit"
Source="konrad_nobg.png" />
2022-09-16 11:19:46 +02:00
<Label
2022-08-30 15:42:25 +02:00
Grid.Row="1"
HorizontalOptions="Start"
FontSize="12"
TextColor="{DynamicResource primary-back-title-color}"
2022-04-10 17:38:34 +02:00
TextType="Html"
Text="Powered by &lt;b&gt;Stadtwerke Konstanz&lt;/b&gt;"/>
2022-09-16 11:19:46 +02:00
<!--<Label
Grid.Row="2"
2022-08-30 15:42:25 +02:00
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>
2022-09-16 11:19:46 +02:00
</Label>-->
<version:VersionNumberView x:Name="VersionNumber" Grid.Row="2"/>
</Grid>
</ContentView.Content>
</ContentView>