mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
62 lines
2.8 KiB
Text
62 lines
2.8 KiB
Text
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
x:Class="TINK.View.Root.RootPageFlyout"
|
||
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
||
|
xmlns:local="clr-namespace:TINK.View"
|
||
|
IconImageSource="menu"
|
||
|
Title="sharee.bike">
|
||
|
<StackLayout>
|
||
|
<ListView x:Name="MenuItemsListView"
|
||
|
SeparatorVisibility="None"
|
||
|
HasUnevenRows="true"
|
||
|
local:ListViewAttachedBehavior.Command="{Binding MenuItemSelected}"
|
||
|
ItemsSource="{Binding MenuItems}">
|
||
|
<ListView.Header>
|
||
|
<Grid BackgroundColor="{DynamicResource Key=primary-back-title-color}">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="10"/>
|
||
|
<ColumnDefinition Width="*"/>
|
||
|
<ColumnDefinition Width="10"/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="30"/>
|
||
|
<RowDefinition Height="80"/>
|
||
|
<RowDefinition Height="Auto"/>
|
||
|
<RowDefinition Height="10"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<Label
|
||
|
Grid.Column="1"
|
||
|
Grid.Row="2"
|
||
|
Text="{Binding MasterDetailMenuTitlte}"
|
||
|
Style="{DynamicResource SubtitleStyle}"/>
|
||
|
</Grid>
|
||
|
</ListView.Header>
|
||
|
<ListView.ItemTemplate>
|
||
|
<DataTemplate>
|
||
|
<ViewCell>
|
||
|
<Grid Padding="5,10">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="30"/>
|
||
|
<ColumnDefinition Width="*" />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Image>
|
||
|
<Image.Source>
|
||
|
<FontImageSource Glyph="{Binding GlyphCode}" Color="Black" FontFamily="FA-S"/>
|
||
|
</Image.Source>
|
||
|
</Image>
|
||
|
<Label
|
||
|
Grid.Column="1"
|
||
|
Margin="10, 0, 0, 0"
|
||
|
VerticalOptions="FillAndExpand"
|
||
|
VerticalTextAlignment="Center"
|
||
|
FontSize="18"
|
||
|
Text="{Binding Title}"/>
|
||
|
</Grid>
|
||
|
</ViewCell>
|
||
|
</DataTemplate>
|
||
|
</ListView.ItemTemplate>
|
||
|
</ListView>
|
||
|
</StackLayout>
|
||
|
</ContentPage>
|