mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
21 lines
849 B
Text
21 lines
849 B
Text
|
<?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" />
|
||
|
</Grid.RowDefinitions>
|
||
|
<Image
|
||
|
HeightRequest="140"
|
||
|
Aspect="AspectFit"
|
||
|
Source="sharee_no_background.png" />
|
||
|
<Label
|
||
|
HorizontalOptions="CenterAndExpand"
|
||
|
FontSize="Large"
|
||
|
Grid.Row="1"
|
||
|
Text="{Binding MasterDetailMenuTitlte}"/>
|
||
|
</Grid>
|
||
|
</ContentView>
|