2021-11-07 19:42:59 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
BackgroundColor="{DynamicResource Key=primary-back-title-color}"
|
|
|
|
x:Class="TINK.View.RootShell.FlyoutHeader">
|
|
|
|
<Grid Padding="5,10">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
<RowDefinition Height="30" />
|
2022-01-22 18:32:22 +01:00
|
|
|
<RowDefinition Height="30" />
|
2021-11-07 19:42:59 +01:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Image
|
2022-04-10 17:38:34 +02:00
|
|
|
HeightRequest="140"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
Aspect="AspectFit"
|
|
|
|
Source="sharee_no_background.png"/>
|
2021-11-07 19:42:59 +01:00
|
|
|
<Label
|
|
|
|
HorizontalOptions="CenterAndExpand"
|
|
|
|
FontSize="Large"
|
2022-04-10 17:38:34 +02:00
|
|
|
FontAttributes="Bold"
|
2021-11-07 19:42:59 +01:00
|
|
|
Grid.Row="1"
|
2022-01-22 18:32:22 +01:00
|
|
|
Text="{Binding MasterDetailMenuTitlte}"/>
|
|
|
|
<Label
|
|
|
|
HorizontalOptions="CenterAndExpand"
|
|
|
|
FontSize="Micro"
|
|
|
|
HorizontalTextAlignment="Center"
|
|
|
|
Grid.Row="2"
|
2022-04-10 17:38:34 +02:00
|
|
|
Text="gefördert vom Bayerischen Staatministerium für Wohnen, Bau und Verkehr"/>
|
2021-11-07 19:42:59 +01:00
|
|
|
</Grid>
|
|
|
|
</ContentView>
|