summaryrefslogtreecommitdiff
path: root/NewPlayer/NewPlayer/App.xaml.cs
blob: 20ebee8aac9a8807e4266c9fe1b39328113f4b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using NewPlayer.Views;

using Xamarin.Forms;
// Enable the following line if Android supports XamlCompilationOptions.Compile
// using Xamarin.Forms.Xaml;

namespace NewPlayer
{
    public partial class App : Application
    {
        public App()
        {
            InitializeComponent();
            SetMainPage();
        }

        public static void SetMainPage()
        {
            Current.MainPage = new NavigationPage(new LibraryPage());
        }
    }
}