diff --git a/.gitignore b/.gitignore index c6ef218..5addd94 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ .idea +bin/ +obj/ \ No newline at end of file diff --git a/.vs/ProjectEvaluation/shoopncook.app.metadata.v6.1 b/.vs/ProjectEvaluation/shoopncook.app.metadata.v6.1 new file mode 100644 index 0000000..64f986a Binary files /dev/null and b/.vs/ProjectEvaluation/shoopncook.app.metadata.v6.1 differ diff --git a/.vs/ProjectEvaluation/shoopncook.app.projects.v6.1 b/.vs/ProjectEvaluation/shoopncook.app.projects.v6.1 new file mode 100644 index 0000000..ab5a7a4 Binary files /dev/null and b/.vs/ProjectEvaluation/shoopncook.app.projects.v6.1 differ diff --git a/.vs/ShoopNCook.App/FileContentIndex/e7fd876e-2594-45fa-9cea-e81c614424de.vsidx b/.vs/ShoopNCook.App/FileContentIndex/e7fd876e-2594-45fa-9cea-e81c614424de.vsidx new file mode 100644 index 0000000..3d065b8 Binary files /dev/null and b/.vs/ShoopNCook.App/FileContentIndex/e7fd876e-2594-45fa-9cea-e81c614424de.vsidx differ diff --git a/.vs/ShoopNCook.App/FileContentIndex/read.lock b/.vs/ShoopNCook.App/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/.vs/ShoopNCook/DesignTimeBuild/.dtbcache.v2 b/.vs/ShoopNCook/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..7ba0253 Binary files /dev/null and b/.vs/ShoopNCook/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/ShoopNCook/FileContentIndex/ed0bf642-1443-422f-9a4c-7fc8176e3782.vsidx b/.vs/ShoopNCook/FileContentIndex/ed0bf642-1443-422f-9a4c-7fc8176e3782.vsidx new file mode 100644 index 0000000..b41bbd9 Binary files /dev/null and b/.vs/ShoopNCook/FileContentIndex/ed0bf642-1443-422f-9a4c-7fc8176e3782.vsidx differ diff --git a/.vs/ShoopNCook/FileContentIndex/read.lock b/.vs/ShoopNCook/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/.vs/ShoopNCook/v17/.futdcache.v2 b/.vs/ShoopNCook/v17/.futdcache.v2 new file mode 100644 index 0000000..4937b82 Binary files /dev/null and b/.vs/ShoopNCook/v17/.futdcache.v2 differ diff --git a/.vs/ShoopNCook/v17/.suo b/.vs/ShoopNCook/v17/.suo new file mode 100644 index 0000000..9870aa1 Binary files /dev/null and b/.vs/ShoopNCook/v17/.suo differ diff --git a/.vs/ShoopNCook/v17/.wsuo b/.vs/ShoopNCook/v17/.wsuo new file mode 100644 index 0000000..9870aa1 Binary files /dev/null and b/.vs/ShoopNCook/v17/.wsuo differ diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..e179495 Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..37abc6c --- /dev/null +++ b/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..3b0e629 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,11 @@ +namespace ShoopNCook; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/AppShell.xaml b/AppShell.xaml new file mode 100644 index 0000000..9e4f4e5 --- /dev/null +++ b/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/AppShell.xaml.cs b/AppShell.xaml.cs new file mode 100644 index 0000000..8a40b43 --- /dev/null +++ b/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace ShoopNCook; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/MainPage.xaml b/MainPage.xaml new file mode 100644 index 0000000..b7a8e8f --- /dev/null +++ b/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +