794b4739b1
This gives view models more freedom in how play events from the player are handled
27 lines
967 B
XML
27 lines
967 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ContentPage
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:components="clr-namespace:Aurora.Design.Components"
|
|
xmlns:mp="clr-namespace:Aurora.Design.Components.MediaPlayer"
|
|
x:Class="Aurora.Design.Views.MainView.PageContainer">
|
|
<ContentPage.Content>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition
|
|
Height="*"/>
|
|
<RowDefinition
|
|
Height="50"/>
|
|
</Grid.RowDefinitions>
|
|
<ContentPresenter
|
|
Grid.Row="0"
|
|
x:Name="ViewContent"/>
|
|
<mp:Player
|
|
x:Name="Player"
|
|
Grid.Row="1"
|
|
HorizontalOptions="CenterAndExpand"
|
|
VerticalOptions="End"
|
|
HeightRequest="200"/>
|
|
</Grid>
|
|
</ContentPage.Content>
|
|
</ContentPage> |