commit 4fe7523eaaae90ecb894f28f7d84ec781140bff2 Author: KPK Student Date: Fri Feb 28 08:58:58 2025 +0300 first commit diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..9c438b2 --- /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..1034bda --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,12 @@ +namespace Proj +{ + 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..93deeaa --- /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..36ca1e3 --- /dev/null +++ b/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Proj +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MainPage.xaml b/MainPage.xaml new file mode 100644 index 0000000..b8fa687 --- /dev/null +++ b/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +