diff --git a/MyFirstMauiApp/MyFirstMauiApp.sln b/MyFirstMauiApp/MyFirstMauiApp.sln index e4122c3..19f0713 100644 --- a/MyFirstMauiApp/MyFirstMauiApp.sln +++ b/MyFirstMauiApp/MyFirstMauiApp.sln @@ -19,7 +19,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalDataStorageWithSQLite" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorHybridWithMAUI", "BlazorHybridWithMAUI\BlazorHybridWithMAUI.csproj", "{D1B193FE-7F85-4709-BAB7-3E8B7110CF3E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeatherClient", "WeatherClient\WeatherClient.csproj", "{CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeatherClient", "WeatherClient\WeatherClient.csproj", "{CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NotesNet8", "NotesNet8\NotesNet8.csproj", "{066105D3-EEF7-432F-B784-8753A1BE3D92}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -81,6 +83,12 @@ Global {CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Release|Any CPU.ActiveCfg = Release|Any CPU {CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Release|Any CPU.Build.0 = Release|Any CPU {CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Release|Any CPU.Deploy.0 = Release|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Debug|Any CPU.Build.0 = Debug|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Release|Any CPU.ActiveCfg = Release|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Release|Any CPU.Build.0 = Release|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Release|Any CPU.Deploy.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MyFirstMauiApp/NotesNet8/App.xaml b/MyFirstMauiApp/NotesNet8/App.xaml new file mode 100644 index 0000000..13aad65 --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MyFirstMauiApp/NotesNet8/App.xaml.cs b/MyFirstMauiApp/NotesNet8/App.xaml.cs new file mode 100644 index 0000000..e51b13e --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/App.xaml.cs @@ -0,0 +1,12 @@ +namespace NotesNet8 +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/MyFirstMauiApp/NotesNet8/AppShell.xaml b/MyFirstMauiApp/NotesNet8/AppShell.xaml new file mode 100644 index 0000000..b4a9829 --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/AppShell.xaml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/MyFirstMauiApp/NotesNet8/AppShell.xaml.cs b/MyFirstMauiApp/NotesNet8/AppShell.xaml.cs new file mode 100644 index 0000000..4d4d359 --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace NotesNet8 +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MyFirstMauiApp/NotesNet8/MainPage.xaml b/MyFirstMauiApp/NotesNet8/MainPage.xaml new file mode 100644 index 0000000..8b44ae1 --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +