commit f537db01c98be264410874077d7effaaebd27217 Author: Vlad Torop Date: Thu Feb 27 14:43:22 2025 +0300 Mobail_App diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..28bcb4a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.vs +/bin +/obj diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..5735990 --- /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..4030d3c --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,12 @@ +namespace MobailApp +{ + 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..65e70a6 --- /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..2205079 --- /dev/null +++ b/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace MobailApp +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MainPage.xaml b/MainPage.xaml new file mode 100644 index 0000000..c62d559 --- /dev/null +++ b/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +