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

20 lines
860 B
Plaintext
Raw Normal View History

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-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">
2021-11-07 19:42:59 +01:00
<Grid.RowDefinitions>
2022-08-30 15:42:25 +02:00
<RowDefinition Height="80"/>
2021-11-07 19:42:59 +01:00
</Grid.RowDefinitions>
2022-08-30 15:42:25 +02:00
<Grid.ColumnDefinitions>
<ColumnDefinition Width="75"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Image Source="menu_swk_theme.png"
Aspect="AspectFill"
Grid.ColumnSpan="2"/>
<Label Style="{StaticResource Label-Navbar}"
Text="{x:Static resources:AppResources.MarkingFlyoutHeader}"/>
2021-11-07 19:42:59 +01:00
</Grid>
</ContentView>