diff --git a/MyFirstMauiApp/.vscode/launch.json b/MyFirstMauiApp/.vscode/launch.json index 01677be..d5b7fed 100644 --- a/MyFirstMauiApp/.vscode/launch.json +++ b/MyFirstMauiApp/.vscode/launch.json @@ -9,7 +9,7 @@ "type": "maui", "request": "launch", "preLaunchTask": "maui: Build", - "project": "./" + "project": "./MauiBinding" } ] } diff --git a/MyFirstMauiApp/BlazorHybridWithMAUI/wwwroot/css/app.css b/MyFirstMauiApp/BlazorHybridWithMAUI/wwwroot/css/app.css index 6909156..15f7cf0 100644 --- a/MyFirstMauiApp/BlazorHybridWithMAUI/wwwroot/css/app.css +++ b/MyFirstMauiApp/BlazorHybridWithMAUI/wwwroot/css/app.css @@ -1,4 +1,4 @@ -@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); +@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css"); html, body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; diff --git a/MyFirstMauiApp/MyFirstMauiApp.sln b/MyFirstMauiApp/MyFirstMauiApp.sln index fbd3ca4..e4122c3 100644 --- a/MyFirstMauiApp/MyFirstMauiApp.sln +++ b/MyFirstMauiApp/MyFirstMauiApp.sln @@ -17,7 +17,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UseRestService", "UseRestSe EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalDataStorageWithSQLite", "LocalDataStorageWithSQLite\LocalDataStorageWithSQLite.csproj", "{B15EEC37-30AA-4A54-89D1-D5B3C4DB3E07}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorHybridWithMAUI", "BlazorHybridWithMAUI\BlazorHybridWithMAUI.csproj", "{D1B193FE-7F85-4709-BAB7-3E8B7110CF3E}" +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}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -73,6 +75,12 @@ Global {D1B193FE-7F85-4709-BAB7-3E8B7110CF3E}.Release|Any CPU.ActiveCfg = Release|Any CPU {D1B193FE-7F85-4709-BAB7-3E8B7110CF3E}.Release|Any CPU.Build.0 = Release|Any CPU {D1B193FE-7F85-4709-BAB7-3E8B7110CF3E}.Release|Any CPU.Deploy.0 = Release|Any CPU + {CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {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 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MyFirstMauiApp/WeatherClient/App.xaml b/MyFirstMauiApp/WeatherClient/App.xaml new file mode 100644 index 0000000..ba92b11 --- /dev/null +++ b/MyFirstMauiApp/WeatherClient/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MyFirstMauiApp/WeatherClient/App.xaml.cs b/MyFirstMauiApp/WeatherClient/App.xaml.cs new file mode 100644 index 0000000..df96028 --- /dev/null +++ b/MyFirstMauiApp/WeatherClient/App.xaml.cs @@ -0,0 +1,12 @@ +namespace WeatherClient +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/MyFirstMauiApp/WeatherClient/AppShell.xaml b/MyFirstMauiApp/WeatherClient/AppShell.xaml new file mode 100644 index 0000000..8f3b0b1 --- /dev/null +++ b/MyFirstMauiApp/WeatherClient/AppShell.xaml @@ -0,0 +1,13 @@ + + + + + + diff --git a/MyFirstMauiApp/WeatherClient/AppShell.xaml.cs b/MyFirstMauiApp/WeatherClient/AppShell.xaml.cs new file mode 100644 index 0000000..478eb86 --- /dev/null +++ b/MyFirstMauiApp/WeatherClient/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace WeatherClient +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MyFirstMauiApp/WeatherClient/MainPage.xaml b/MyFirstMauiApp/WeatherClient/MainPage.xaml new file mode 100644 index 0000000..5ceb1c6 --- /dev/null +++ b/MyFirstMauiApp/WeatherClient/MainPage.xaml @@ -0,0 +1,32 @@ + + + + + +