diff --git a/mastermind/App.xaml b/mastermind/App.xaml new file mode 100644 index 0000000..b850e1e --- /dev/null +++ b/mastermind/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/mastermind/App.xaml.cs b/mastermind/App.xaml.cs new file mode 100644 index 0000000..ad9efe4 --- /dev/null +++ b/mastermind/App.xaml.cs @@ -0,0 +1,12 @@ +namespace mastermind +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/mastermind/AppShell.xaml b/mastermind/AppShell.xaml new file mode 100644 index 0000000..f4e7ab9 --- /dev/null +++ b/mastermind/AppShell.xaml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/mastermind/AppShell.xaml.cs b/mastermind/AppShell.xaml.cs new file mode 100644 index 0000000..0fcecd0 --- /dev/null +++ b/mastermind/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace mastermind +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/mastermind/MainPage.xaml b/mastermind/MainPage.xaml new file mode 100644 index 0000000..031f06f --- /dev/null +++ b/mastermind/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +