<?xml version="1.0" encoding="UTF-8"?>
<ContentView
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:imgBtn="clr-namespace:Aurora.Design.Components.ImageButton"
x:Class="Aurora.Design.Components.MediaPlayer.Player">
<ContentView.Resources>
<StyleSheet
Source="Player.css"/>
</ContentView.Resources>
<ContentView.Content>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition
Width="200"/>
Width="*"/>
Width="100"/>
</Grid.ColumnDefinitions>
<StackLayout
Grid.Column="0"
Orientation="Horizontal">
<BoxView
x:Name="AlbumArtBoxView"/>
x:Name="MediaInfoContainer"
HorizontalOptions="StartAndExpand">
<Label
x:Name="SongTitleLabel"
LineBreakMode="TailTruncation"/>
x:Name="ArtistNameLabel"
</StackLayout>
x:Name="PlayerControlContainer"
Grid.Column="1"
HorizontalOptions="Center"
<imgBtn:ImageButton
x:Name="PreviousButton"
Source="Resources/backward.png"/>
x:Name="PlayButton"/>
x:Name="NextButton"
Source="Resources/forwards.png"/>
</Grid>
</ContentView.Content>
</ContentView>