93be6dc100
Added PageContainer to dynamically load pages within the main content. Added player component to control music playback(Half functional). Added playback changed event not the player service.
16 lines
315 B
C#
16 lines
315 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Aurora.Frontend.Components.MediaPlayer
|
|
{
|
|
public partial class Player : ContentView
|
|
{
|
|
public Player()
|
|
{
|
|
BindingContext = new PlayerViewModel();
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|