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

23 lines
758 B
Text
Raw Normal View History

2023-08-31 12:31:38 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2021-11-07 19:42:59 +01:00
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
2022-08-30 15:42:25 +02:00
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
2021-11-07 19:42:59 +01:00
x:Class="TINK.View.RootShell.FlyoutHeader">
2022-08-30 15:42:25 +02:00
<Grid Padding="0">
2023-08-31 12:31:38 +02:00
<Grid.RowDefinitions>
<RowDefinition Height="80"/>
</Grid.RowDefinitions>
<Image Grid.Row="0"
2023-09-14 12:28:59 +02:00
Source="menu_theme.png"
2023-08-31 12:31:38 +02:00
Aspect="AspectFill"/>
<Label Grid.Row="0"
FontSize="20"
TextTransform="Uppercase"
TextColor="White"
VerticalOptions="Center"
HorizontalOptions="Start"
Padding="20"
Text="{x:Static resources:AppResources.MarkingFlyoutHeader}"/>
2021-11-07 19:42:59 +01:00
</Grid>
2023-08-31 12:31:38 +02:00
</ContentView>