diff --git a/MyFirstMauiApp/.vscode/launch.json b/MyFirstMauiApp/.vscode/launch.json new file mode 100644 index 0000000..a81bd58 --- /dev/null +++ b/MyFirstMauiApp/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": ".NET MAUI", + "type": "maui", + "request": "launch", + "preLaunchTask": "maui: Build" + } + ] +} \ No newline at end of file diff --git a/MyFirstMauiApp/MauiUI/App.xaml b/MyFirstMauiApp/MauiUI/App.xaml new file mode 100644 index 0000000..526f535 --- /dev/null +++ b/MyFirstMauiApp/MauiUI/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MyFirstMauiApp/MauiUI/App.xaml.cs b/MyFirstMauiApp/MauiUI/App.xaml.cs new file mode 100644 index 0000000..f7072d4 --- /dev/null +++ b/MyFirstMauiApp/MauiUI/App.xaml.cs @@ -0,0 +1,12 @@ +namespace MauiUI +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/MyFirstMauiApp/MauiUI/AppShell.xaml b/MyFirstMauiApp/MauiUI/AppShell.xaml new file mode 100644 index 0000000..72fe16f --- /dev/null +++ b/MyFirstMauiApp/MauiUI/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/MyFirstMauiApp/MauiUI/AppShell.xaml.cs b/MyFirstMauiApp/MauiUI/AppShell.xaml.cs new file mode 100644 index 0000000..8263ca1 --- /dev/null +++ b/MyFirstMauiApp/MauiUI/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace MauiUI +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MyFirstMauiApp/MauiUI/MainPage.xaml b/MyFirstMauiApp/MauiUI/MainPage.xaml new file mode 100644 index 0000000..e68561a --- /dev/null +++ b/MyFirstMauiApp/MauiUI/MainPage.xaml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + +