commit 6c58370919e77bf01c62c39c08dde8785debfa76 Author: Quint Date: Thu Feb 27 15:31:43 2025 +0300 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5df6da6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.vs +/bin +/obj \ No newline at end of file diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..663bfec --- /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..6a45a97 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,12 @@ +namespace MobileApp +{ + 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..571e95f --- /dev/null +++ b/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/AppShell.xaml.cs b/AppShell.xaml.cs new file mode 100644 index 0000000..3e6f39f --- /dev/null +++ b/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace MobileApp +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MainPage.xaml b/MainPage.xaml new file mode 100644 index 0000000..079ec10 --- /dev/null +++ b/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +