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
|
|
|
|
|
|
|
<Grid Padding="0">
|
2021-11-07 19:42:59 +01:00
|
|
|
<Grid.RowDefinitions>
|
2022-05-15 19:56:03 +02:00
|
|
|
<RowDefinition Height="200" />
|
2021-11-07 19:42:59 +01:00
|
|
|
</Grid.RowDefinitions>
|
2022-05-15 19:56:03 +02:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="363" />
|
|
|
|
</Grid.ColumnDefinitions>
|
2021-11-07 19:42:59 +01:00
|
|
|
<Image
|
2022-04-10 17:38:34 +02:00
|
|
|
Aspect="AspectFit"
|
|
|
|
Source="sharee_no_background.png"/>
|
2021-11-07 19:42:59 +01:00
|
|
|
</Grid>
|
|
|
|
</ContentView>
|