diff --git a/Views/Views.csproj b/App/App.csproj similarity index 92% rename from Views/Views.csproj rename to App/App.csproj index f01d2bc..7eadb81 100644 --- a/Views/Views.csproj +++ b/App/App.csproj @@ -6,17 +6,17 @@ Exe - Views + App true true enable - Views + App - com.companyname.views - 4117f2dd-e862-4cb9-896a-a6a11b44f720 + com.companyname.app + db1bf273-756c-4ce6-b51c-938e0033a8ad 1.0 diff --git a/App/App.xaml b/App/App.xaml new file mode 100644 index 0000000..a4c1bcf --- /dev/null +++ b/App/App.xaml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/App/App.xaml.cs b/App/App.xaml.cs new file mode 100644 index 0000000..2a581ef --- /dev/null +++ b/App/App.xaml.cs @@ -0,0 +1,12 @@ +namespace App; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} + diff --git a/App/AppShell.xaml b/App/AppShell.xaml new file mode 100644 index 0000000..11814e7 --- /dev/null +++ b/App/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/App/AppShell.xaml.cs b/App/AppShell.xaml.cs new file mode 100644 index 0000000..60f8ec8 --- /dev/null +++ b/App/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace App; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} + diff --git a/App/MainPage.xaml b/App/MainPage.xaml new file mode 100644 index 0000000..150f346 --- /dev/null +++ b/App/MainPage.xaml @@ -0,0 +1,42 @@ + + + + + + + + +