2019-07-05 18:17:09 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-11-30 19:41:36 +00:00
|
|
|
<ContentView
|
2019-07-05 18:17:09 +00:00
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2019-11-30 19:41:36 +00:00
|
|
|
x:Class="Aurora.Design.Components.NavigationMenu.NavigationMenu">
|
2019-11-30 20:46:09 +00:00
|
|
|
<ContentView.Resources>
|
|
|
|
<StyleSheet
|
|
|
|
Source="NavigationMenu.css"/>
|
|
|
|
</ContentView.Resources>
|
2019-07-05 18:17:09 +00:00
|
|
|
<ContentView.Content>
|
2019-12-24 01:07:07 +00:00
|
|
|
<StackLayout
|
|
|
|
x:Name="Layout"
|
|
|
|
StyleClass="primaryColor">
|
2019-07-05 18:17:09 +00:00
|
|
|
<ListView
|
|
|
|
x:Name="MenuItemsListView"
|
|
|
|
HasUnevenRows="true"
|
2019-12-02 00:14:36 +00:00
|
|
|
SeparatorVisibility="None"
|
2019-07-05 18:17:09 +00:00
|
|
|
IsGroupingEnabled="true"
|
2019-12-01 11:53:30 +00:00
|
|
|
RowHeight="35"
|
2019-12-24 01:07:07 +00:00
|
|
|
StyleClass="primaryColor"
|
2019-07-05 18:17:09 +00:00
|
|
|
CachingStrategy="RecycleElement">
|
|
|
|
<ListView.GroupHeaderTemplate>
|
|
|
|
<DataTemplate>
|
2019-12-24 01:07:07 +00:00
|
|
|
<ViewCell
|
|
|
|
x:Name="GroupCell">
|
2019-07-05 18:17:09 +00:00
|
|
|
<Label
|
2019-12-01 11:53:30 +00:00
|
|
|
VerticalTextAlignment="Center"
|
2019-11-30 20:46:09 +00:00
|
|
|
Text="{Binding GroupHeading}"/>
|
2019-07-05 18:17:09 +00:00
|
|
|
</ViewCell>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListView.GroupHeaderTemplate>
|
|
|
|
<ListView.ItemTemplate>
|
|
|
|
<DataTemplate>
|
2019-12-24 01:07:07 +00:00
|
|
|
<ViewCell
|
|
|
|
x:Name="ItemCell">
|
2019-11-30 20:46:09 +00:00
|
|
|
<Label
|
2019-12-24 01:07:07 +00:00
|
|
|
StyleClass="primaryColor"
|
|
|
|
Text="{Binding Title}"/>
|
2019-07-05 18:17:09 +00:00
|
|
|
</ViewCell>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListView.ItemTemplate>
|
|
|
|
</ListView>
|
|
|
|
</StackLayout>
|
|
|
|
</ContentView.Content>
|
2019-11-30 19:41:36 +00:00
|
|
|
</ContentView>
|