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

39 lines
1.5 KiB
Plaintext
Raw Normal View History

2022-04-10 17:38:34 +02:00
<?xml version="1.0" encoding="utf-8" ?>
<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"
xmlns:local="clr-namespace:TINK.View;assembly=TINKLib"
2022-04-10 17:38:34 +02:00
x:Class="TINK.View.RootShell.FlyoutFooter">
2022-08-30 15:42:25 +02:00
<Grid Padding="20,0,0,20">
2022-04-10 17:38:34 +02:00
<Grid.RowDefinitions>
2022-08-30 15:42:25 +02:00
<RowDefinition Height="35"/>
<RowDefinition Height="20" />
2022-04-10 17:38:34 +02:00
</Grid.RowDefinitions>
2022-08-30 15:42:25 +02:00
<Image
Grid.Row="0"
HeightRequest="35"
HorizontalOptions="StartAndExpand"
Aspect="AspectFit"
Source="konrad_nobg.png" />
2022-04-10 17:38:34 +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-08-30 15:42:25 +02:00
<!--<Label
Grid.Row="1"
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>-->
2022-04-10 17:38:34 +02:00
</Grid>
</ContentView>