2019-07-05 14:17:09 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-11-30 14:41:36 -05:00
|
|
|
<ContentPage
|
2019-07-05 14:17:09 -04:00
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:views="clr-namespace:Aurora.Design.Views.MainView"
|
|
|
|
xmlns:navigation="clr-namespace:Aurora.Design.Components.NavigationMenu"
|
2019-12-01 15:26:13 -08:00
|
|
|
xmlns:mp="clr-namespace:Aurora.Design.Components.MediaPlayer"
|
2019-12-07 13:47:45 -05:00
|
|
|
xmlns:dialog="clr-namespace:Aurora.Design.Components.Dialogs"
|
2019-11-30 14:41:36 -05:00
|
|
|
x:Class="Aurora.Design.Views.Main.MainView">
|
2019-12-01 06:53:30 -05:00
|
|
|
<ContentPage.Resources>
|
|
|
|
<StyleSheet
|
|
|
|
Source="MainView.css"/>
|
|
|
|
</ContentPage.Resources>
|
2019-11-30 14:41:36 -05:00
|
|
|
<Grid>
|
2019-12-01 06:53:30 -05:00
|
|
|
<Grid.RowDefinitions>
|
2019-12-07 13:47:45 -05:00
|
|
|
<RowDefinition Height="35"/>
|
|
|
|
<RowDefinition Height="35"/>
|
2019-12-01 06:53:30 -05:00
|
|
|
<RowDefinition Height="*"/>
|
2019-12-03 15:51:16 -08:00
|
|
|
<RowDefinition Height="60"/>
|
2019-12-01 06:53:30 -05:00
|
|
|
</Grid.RowDefinitions>
|
2019-12-04 14:53:49 -08:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="150"/>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
2019-12-10 15:10:27 -05:00
|
|
|
|
2019-12-01 06:53:30 -05:00
|
|
|
<!--Header-->
|
|
|
|
<StackLayout
|
|
|
|
x:Name="Header"
|
2019-12-01 20:20:55 -08:00
|
|
|
Grid.Row="0"
|
2019-12-04 14:53:49 -08:00
|
|
|
Grid.ColumnSpan="2"
|
2019-12-01 06:53:30 -05:00
|
|
|
Orientation="Horizontal">
|
|
|
|
<Entry Text="Search"/>
|
|
|
|
</StackLayout>
|
2019-11-30 14:41:36 -05:00
|
|
|
|
2019-12-01 20:20:55 -08:00
|
|
|
<!--Title-->
|
|
|
|
<StackLayout
|
|
|
|
Grid.Row="1"
|
2019-12-04 14:53:49 -08:00
|
|
|
Grid.ColumnSpan="2"
|
2019-12-01 20:20:55 -08:00
|
|
|
x:Name="TitleContainer">
|
|
|
|
<Label Text="{Binding Title}" TextColor="White"/>
|
|
|
|
</StackLayout>
|
|
|
|
|
2019-12-04 14:53:49 -08:00
|
|
|
<!--Sidebar-->
|
|
|
|
<navigation:NavigationMenu
|
|
|
|
Grid.Column="0"
|
|
|
|
Grid.RowSpan="3"
|
|
|
|
x:Name="MasterPage"
|
|
|
|
Items="{Binding Pages}"
|
|
|
|
SelectedItem="{Binding SelectedItem}"/>
|
2019-12-01 06:53:30 -05:00
|
|
|
|
2019-12-04 14:53:49 -08:00
|
|
|
<!--Page Container-->
|
|
|
|
<views:PageContainer
|
|
|
|
Grid.Column="1"
|
|
|
|
Grid.Row="2"
|
2019-12-10 15:10:27 -05:00
|
|
|
x:Name="Content"/>
|
2019-12-01 06:53:30 -05:00
|
|
|
|
2019-12-07 13:47:45 -05:00
|
|
|
<!--Modal Dialog-->
|
|
|
|
<dialog:Modal x:Name="Modal"
|
|
|
|
Grid.Column="1"
|
|
|
|
Grid.Row="2"
|
2019-12-21 20:12:53 -05:00
|
|
|
BackgroundColor="Gray"
|
2019-12-07 13:47:45 -05:00
|
|
|
HorizontalOptions="Center"
|
|
|
|
VerticalOptions="End"/>
|
|
|
|
|
2019-12-01 06:53:30 -05:00
|
|
|
<!--Music Player-->
|
|
|
|
<mp:Player
|
2019-12-04 14:53:49 -08:00
|
|
|
x:Name="Player"
|
|
|
|
Grid.Row="3"
|
2019-12-21 20:12:53 -05:00
|
|
|
Grid.ColumnSpan="2"/>
|
2019-11-30 14:41:36 -05:00
|
|
|
</Grid>
|
2019-12-01 06:53:30 -05:00
|
|
|
|
2019-11-30 14:41:36 -05:00
|
|
|
</ContentPage>
|