sharee.bike-App/LastenradBayern/TINK/View/RootShell/FlyoutHeader.xaml

29 lines
1,006 B
Plaintext
Raw Normal View History

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"
2022-08-30 15:42:25 +02:00
BackgroundColor="#009BDB"
x:Class="TINK.View.RootShell.FlyoutHeader"
HeightRequest="195">
2022-05-15 19:56:03 +02:00
2022-06-17 14:17:58 +02:00
<Grid Padding="20">
2021-11-07 19:42:59 +01:00
<Grid.RowDefinitions>
2022-06-17 14:17:58 +02:00
<RowDefinition Height="Auto" />
2022-08-30 15:42:25 +02:00
<RowDefinition Height="Auto" />
2021-11-07 19:42:59 +01:00
</Grid.RowDefinitions>
2022-05-15 19:56:03 +02:00
<Grid.ColumnDefinitions>
2022-06-17 14:17:58 +02:00
<ColumnDefinition Width="*" />
2022-05-15 19:56:03 +02:00
</Grid.ColumnDefinitions>
2021-11-07 19:42:59 +01:00
<Image
2022-06-17 14:17:58 +02:00
Grid.Row="0"
HeightRequest="100"
Aspect="AspectFit"
HorizontalOptions="StartAndExpand"
2023-09-14 12:28:59 +02:00
Source="menu_logo.png"/>
2022-06-17 14:17:58 +02:00
<Label
Grid.Row="1"
Text="Gefördert durch &#x0a;Bayerisches Staatsministerium für &#x0a;Wohnen, Bau und Verkehr"
TextColor="White"
FontSize="Small"/>
2021-11-07 19:42:59 +01:00
</Grid>
2023-09-14 12:28:59 +02:00
</ContentView>