mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-04-21 20:46:28 +02:00
22 lines
No EOL
737 B
XML
22 lines
No EOL
737 B
XML
<?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="LightGray"
|
|
x:Class="TINK.View.RootShell.FlyoutHeader">
|
|
<StackLayout Orientation="Horizontal"
|
|
VerticalOptions="Center"
|
|
HeightRequest="100">
|
|
<Label HorizontalOptions="EndAndExpand"
|
|
VerticalOptions="CenterAndExpand"
|
|
FontSize="Title"
|
|
FontAttributes="Bold"
|
|
TextColor="DimGray"
|
|
Text="{Binding MasterDetailMenuTitlte}"/>
|
|
<Image HeightRequest="90"
|
|
WidthRequest="90"
|
|
Aspect="AspectFit"
|
|
HorizontalOptions="StartAndExpand"
|
|
VerticalOptions="CenterAndExpand"
|
|
Source="sharee_no_background.png"/>
|
|
</StackLayout>
|
|
</ContentView> |