mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-14 22:36:26 +01:00
22 lines
758 B
XML
22 lines
758 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"
|
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
x:Class="TINK.View.RootShell.FlyoutHeader">
|
|
<Grid Padding="0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="80"/>
|
|
</Grid.RowDefinitions>
|
|
<Image Grid.Row="0"
|
|
Source="menu_theme.png"
|
|
Aspect="AspectFill"/>
|
|
<Label Grid.Row="0"
|
|
FontSize="20"
|
|
TextTransform="Uppercase"
|
|
TextColor="White"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Start"
|
|
Padding="20"
|
|
Text="{x:Static resources:AppResources.MarkingFlyoutHeader}"/>
|
|
</Grid>
|
|
</ContentView>
|