1fcaffb9b1
Using data grid for songs view. Added FileSystemUtil for async folder traversal
17 lines
310 B
C#
17 lines
310 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using Xamarin.Forms;
|
|
|
|
namespace Aurora.Frontend.Views.Songs
|
|
{
|
|
public partial class SongsView : ContentPage
|
|
{
|
|
public SongsView()
|
|
{
|
|
InitializeComponent();
|
|
BindingContext = new SongsViewModel();
|
|
}
|
|
}
|
|
}
|