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

27 lines
981 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-05-15 19:56:03 +02:00
BackgroundColor="#009bda"
2021-11-07 19:42:59 +01:00
x:Class="TINK.View.RootShell.FlyoutHeader">
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" />
<RowDefinition Height="55" />
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"
2022-04-10 17:38:34 +02:00
Source="sharee_no_background.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>
</ContentView>