<?xml version="1.0" encoding="UTF-8"?>
<ContentView
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Aurora.Design.Components.MediaPlayer.Player">
<ContentView.Content>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition
Width="100"/>
Width="*"/>
</Grid.ColumnDefinitions>
<StackLayout
Grid.Column="0">
<Label
Text="{Binding SongTitle}"/>
Text="{Binding ArtistName}"/>
</StackLayout>
Grid.Column="1"
Orientation="Horizontal">
<Button
Text="Previous"
Command="{Binding PreviousCommand}"
WidthRequest="100"
HeightRequest="50"/>
Text="{Binding PlayButtonText}"
Command="{Binding PlayCommand}"
Text="Next"
Command="{Binding NextCommand}"
</Grid>
</ContentView.Content>
</ContentView>