diff --git a/.vscode/launch.json b/.vscode/launch.json
index a1071ea..b2e5267 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -4,6 +4,7 @@
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
+
{
"name": ".NET MAUI",
"type": "maui",
diff --git a/Samples.sln b/Samples.sln
index bc72ff4..ffedb54 100644
--- a/Samples.sln
+++ b/Samples.sln
@@ -25,6 +25,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex_CustomContentView", "ch0
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex_DataTemplateSelector", "ch03_DataBinding\ex_DataTemplateSelector\ex_DataTemplateSelector.csproj", "{CE13BDA5-D5E5-42A2-BF2B-17942919E7E6}"
EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ch04_Navigation", "ch04_Navigation", "{0E6296E1-F020-4A0D-9F98-4284F38FD68B}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex_ShellRoutes", "ch04_Navigation\ex_ShellRoutes\ex_ShellRoutes.csproj", "{1559C59B-727D-402D-A140-30B111DBF224}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -73,6 +77,10 @@ Global
{CE13BDA5-D5E5-42A2-BF2B-17942919E7E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CE13BDA5-D5E5-42A2-BF2B-17942919E7E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CE13BDA5-D5E5-42A2-BF2B-17942919E7E6}.Release|Any CPU.Build.0 = Release|Any CPU
+ {1559C59B-727D-402D-A140-30B111DBF224}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {1559C59B-727D-402D-A140-30B111DBF224}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {1559C59B-727D-402D-A140-30B111DBF224}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {1559C59B-727D-402D-A140-30B111DBF224}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -87,5 +95,6 @@ Global
{5E1D0DEE-CD68-4AAD-9597-9BFF30C8214C} = {1E07D063-F377-413B-B9A0-FB94AF14B1A9}
{5F26E535-4541-4C99-BD92-2DDB4EB65705} = {E9273679-4D52-465F-8C23-8096DD8C2A7B}
{CE13BDA5-D5E5-42A2-BF2B-17942919E7E6} = {E9273679-4D52-465F-8C23-8096DD8C2A7B}
+ {1559C59B-727D-402D-A140-30B111DBF224} = {0E6296E1-F020-4A0D-9F98-4284F38FD68B}
EndGlobalSection
EndGlobal
diff --git a/ch03_DataBinding/ex_DataTemplateSelector/MainPage.xaml b/ch03_DataBinding/ex_DataTemplateSelector/MainPage.xaml
index 07b75bf..2495676 100644
--- a/ch03_DataBinding/ex_DataTemplateSelector/MainPage.xaml
+++ b/ch03_DataBinding/ex_DataTemplateSelector/MainPage.xaml
@@ -131,7 +131,6 @@
-
+ RowHeight="76" BackgroundColor="White"/>
diff --git a/ch04_Navigation/ex_ShellRoutes/App.xaml b/ch04_Navigation/ex_ShellRoutes/App.xaml
new file mode 100644
index 0000000..52a40f8
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/App.xaml.cs b/ch04_Navigation/ex_ShellRoutes/App.xaml.cs
new file mode 100644
index 0000000..9993ef0
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/App.xaml.cs
@@ -0,0 +1,11 @@
+namespace ex_ShellRoutes;
+
+public partial class App : Application
+{
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/AppShell.xaml b/ch04_Navigation/ex_ShellRoutes/AppShell.xaml
new file mode 100644
index 0000000..b9adf92
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/AppShell.xaml.cs b/ch04_Navigation/ex_ShellRoutes/AppShell.xaml.cs
new file mode 100644
index 0000000..72ac629
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace ex_ShellRoutes;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ Routing.RegisterRoute("//newpage1", typeof(NewPage1));
+ }
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/MainPage.xaml b/ch04_Navigation/ex_ShellRoutes/MainPage.xaml
new file mode 100644
index 0000000..060c822
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/MainPage.xaml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/MainPage.xaml.cs b/ch04_Navigation/ex_ShellRoutes/MainPage.xaml.cs
new file mode 100644
index 0000000..34f38ea
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/MainPage.xaml.cs
@@ -0,0 +1,20 @@
+namespace ex_ShellRoutes;
+
+public partial class MainPage : ContentPage
+{
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private async void GoToNewPage1(object sender, EventArgs e)
+ {
+ await Shell.Current.GoToAsync("//newpage1");
+ }
+
+ private async void PushNewPage2(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new NewPage2());
+ }
+}
+
diff --git a/ch04_Navigation/ex_ShellRoutes/MauiProgram.cs b/ch04_Navigation/ex_ShellRoutes/MauiProgram.cs
new file mode 100644
index 0000000..8d4e446
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/MauiProgram.cs
@@ -0,0 +1,24 @@
+using Microsoft.Extensions.Logging;
+
+namespace ex_ShellRoutes;
+
+public static class MauiProgram
+{
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/NewPage1.xaml b/ch04_Navigation/ex_ShellRoutes/NewPage1.xaml
new file mode 100644
index 0000000..cd7e6e4
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/NewPage1.xaml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/NewPage1.xaml.cs b/ch04_Navigation/ex_ShellRoutes/NewPage1.xaml.cs
new file mode 100644
index 0000000..18f17ea
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/NewPage1.xaml.cs
@@ -0,0 +1,20 @@
+namespace ex_ShellRoutes;
+
+public partial class NewPage1 : ContentPage
+{
+ public NewPage1()
+ {
+ InitializeComponent();
+ BindingContext = Shell.Current;
+ }
+
+ private async void GoToNewPage1(object sender, EventArgs e)
+ {
+ await Shell.Current.GoToAsync("//newpage1");
+ }
+
+ private async void PushNewPage2(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new NewPage2());
+ }
+}
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/NewPage2.xaml b/ch04_Navigation/ex_ShellRoutes/NewPage2.xaml
new file mode 100644
index 0000000..29a6a4a
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/NewPage2.xaml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/NewPage2.xaml.cs b/ch04_Navigation/ex_ShellRoutes/NewPage2.xaml.cs
new file mode 100644
index 0000000..d4704cf
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/NewPage2.xaml.cs
@@ -0,0 +1,20 @@
+namespace ex_ShellRoutes;
+
+public partial class NewPage2 : ContentPage
+{
+ public NewPage2()
+ {
+ InitializeComponent();
+ BindingContext = Shell.Current;
+ }
+
+ private async void GoToNewPage1(object sender, EventArgs e)
+ {
+ await Shell.Current.GoToAsync("//newpage1");
+ }
+
+ private async void PushNewPage2(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new NewPage2());
+ }
+}
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Android/AndroidManifest.xml b/ch04_Navigation/ex_ShellRoutes/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..bdec9b5
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Android/MainActivity.cs b/ch04_Navigation/ex_ShellRoutes/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..dfc0e1e
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Android/MainActivity.cs
@@ -0,0 +1,10 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace ex_ShellRoutes;
+
+[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+public class MainActivity : MauiAppCompatActivity
+{
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Android/MainApplication.cs b/ch04_Navigation/ex_ShellRoutes/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..e5fda24
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Android/MainApplication.cs
@@ -0,0 +1,15 @@
+using Android.App;
+using Android.Runtime;
+
+namespace ex_ShellRoutes;
+
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Android/Resources/values/colors.xml b/ch04_Navigation/ex_ShellRoutes/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..5cd1604
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/AppDelegate.cs b/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..17c9c1a
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace ex_ShellRoutes;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/Entitlements.plist b/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..8e87c0c
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/Info.plist b/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..f24aacc
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UIDeviceFamily
+
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/Program.cs b/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..0851ef7
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace ex_ShellRoutes;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Tizen/Main.cs b/ch04_Navigation/ex_ShellRoutes/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..ab671da
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Tizen/Main.cs
@@ -0,0 +1,16 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace ex_ShellRoutes;
+
+class Program : MauiApplication
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Tizen/tizen-manifest.xml b/ch04_Navigation/ex_ShellRoutes/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..f3a550f
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/App.xaml b/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..98b16d0
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/App.xaml.cs b/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..6e539af
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,24 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace ex_ShellRoutes.WinUI;
+
+///
+/// Provides application-specific behavior to supplement the default Application class.
+///
+public partial class App : MauiWinUIApplication
+{
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
+
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/Package.appxmanifest b/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..1c019c5
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/app.manifest b/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..42a21f7
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/iOS/AppDelegate.cs b/ch04_Navigation/ex_ShellRoutes/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..17c9c1a
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace ex_ShellRoutes;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/iOS/Info.plist b/ch04_Navigation/ex_ShellRoutes/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..358337b
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/Platforms/iOS/Program.cs b/ch04_Navigation/ex_ShellRoutes/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..0851ef7
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Platforms/iOS/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace ex_ShellRoutes;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/ch04_Navigation/ex_ShellRoutes/Properties/launchSettings.json b/ch04_Navigation/ex_ShellRoutes/Properties/launchSettings.json
new file mode 100644
index 0000000..c16206a
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/Resources/AppIcon/appicon.svg b/ch04_Navigation/ex_ShellRoutes/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..5f04fcf
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/Resources/AppIcon/appiconfg.svg b/ch04_Navigation/ex_ShellRoutes/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/Resources/Fonts/OpenSans-Regular.ttf b/ch04_Navigation/ex_ShellRoutes/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..2d1edf0
Binary files /dev/null and b/ch04_Navigation/ex_ShellRoutes/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/ch04_Navigation/ex_ShellRoutes/Resources/Fonts/OpenSans-Semibold.ttf b/ch04_Navigation/ex_ShellRoutes/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..fe13d06
Binary files /dev/null and b/ch04_Navigation/ex_ShellRoutes/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/ch04_Navigation/ex_ShellRoutes/Resources/Images/dotnet_bot.png b/ch04_Navigation/ex_ShellRoutes/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..f93ce02
Binary files /dev/null and b/ch04_Navigation/ex_ShellRoutes/Resources/Images/dotnet_bot.png differ
diff --git a/ch04_Navigation/ex_ShellRoutes/Resources/Raw/AboutAssets.txt b/ch04_Navigation/ex_ShellRoutes/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..50b8a7b
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/ch04_Navigation/ex_ShellRoutes/Resources/Splash/splash.svg b/ch04_Navigation/ex_ShellRoutes/Resources/Splash/splash.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/Resources/Styles/Colors.xaml b/ch04_Navigation/ex_ShellRoutes/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..22f0a67
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Resources/Styles/Colors.xaml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ #512BD4
+ #ac99ea
+ #242424
+ #DFD8F7
+ #9880e5
+ #2B0B98
+
+ White
+ Black
+ #D600AA
+ #190649
+ #1f1f1f
+
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ch04_Navigation/ex_ShellRoutes/Resources/Styles/Styles.xaml b/ch04_Navigation/ex_ShellRoutes/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..5bc20f1
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/Resources/Styles/Styles.xaml
@@ -0,0 +1,426 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ch04_Navigation/ex_ShellRoutes/ex_ShellRoutes.csproj b/ch04_Navigation/ex_ShellRoutes/ex_ShellRoutes.csproj
new file mode 100644
index 0000000..59d6889
--- /dev/null
+++ b/ch04_Navigation/ex_ShellRoutes/ex_ShellRoutes.csproj
@@ -0,0 +1,65 @@
+
+
+
+ net8.0-android;net8.0-ios;net8.0-maccatalyst
+ $(TargetFrameworks);net8.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ ex_ShellRoutes
+ true
+ true
+ enable
+ enable
+
+
+ ex_ShellRoutes
+
+
+ com.companyname.ex_shellroutes
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+