├── .gitignore ├── Chapter02 ├── DoToo.sln └── DoToo │ ├── App.xaml │ ├── App.xaml.cs │ ├── Converters │ ├── FilterTextConverter.cs │ └── StatusColorConverter.cs │ ├── DoToo.csproj │ ├── MauiProgram.cs │ ├── Models │ └── TodoItem.cs │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Repositories │ ├── ITodoItemRepository.cs │ └── TodoItemRepository.cs │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── ViewModels │ ├── ItemViewModel.cs │ ├── MainViewModel.cs │ ├── TodoItemViewModel.cs │ └── ViewModel.cs │ └── Views │ ├── ItemView.xaml │ ├── ItemView.xaml.cs │ ├── MainView.xaml │ └── MainView.xaml.cs ├── Chapter03 ├── Build2019Chat │ ├── .gitattributes │ ├── .gitignore │ ├── BuildChat.sln │ └── BuildChat │ │ ├── BuildChat.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── BuildChat.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── BuildChat.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── BuildChat.iOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── LaunchScreen.storyboard │ │ └── BuildChat │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── BuildChat.csproj │ │ ├── Converters │ │ └── InverseBoolConverter.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Models │ │ └── MessageModel.cs │ │ └── ViewModels │ │ └── MainViewModel.cs ├── Chat │ ├── .gitattributes │ ├── .gitignore │ ├── BuildChat.sln │ └── BuildChat │ │ ├── BuildChat.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── BuildChat.Android.csproj │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── BuildChat.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── BuildChat.iOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── LaunchScreen.storyboard │ │ └── BuildChat │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── BuildChat.csproj │ │ ├── Converters │ │ └── InverseBoolConverter.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MauiProgram.cs │ │ ├── Models │ │ └── MessageModel.cs │ │ └── ViewModels │ │ └── MainViewModel.cs └── MauiMigration │ ├── MauiMigration.sln │ ├── MauiMigration │ ├── MauiMigration.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── MauiMigration.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable │ │ │ ├── icon_about.png │ │ │ ├── icon_feed.png │ │ │ └── xamarin_logo.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ ├── MauiMigration.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LargeTile.scale-100.png │ │ │ ├── LargeTile.scale-200.png │ │ │ ├── LargeTile.scale-400.png │ │ │ ├── SmallTile.scale-100.png │ │ │ ├── SmallTile.scale-200.png │ │ │ ├── SmallTile.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ ├── StoreLogo.backup.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── StoreLogo.scale-200.png │ │ │ ├── StoreLogo.scale-400.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MauiMigration.UWP.csproj │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── icon_about.png │ │ ├── icon_feed.png │ │ └── xamarin_logo.png │ ├── MauiMigration.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MauiMigration.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── icon_about.png │ │ │ ├── icon_about@2x.png │ │ │ ├── icon_about@3x.png │ │ │ ├── icon_feed.png │ │ │ ├── icon_feed@2x.png │ │ │ ├── icon_feed@3x.png │ │ │ ├── xamarin_logo.png │ │ │ ├── xamarin_logo@2x.png │ │ │ └── xamarin_logo@3x.png │ └── MauiMigration │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppShell.xaml │ │ ├── AppShell.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── GettingStarted.txt │ │ ├── MauiMigration.csproj │ │ ├── Models │ │ └── Item.cs │ │ ├── Services │ │ ├── IDataStore.cs │ │ └── MockDataStore.cs │ │ ├── ViewModels │ │ ├── AboutViewModel.cs │ │ ├── BaseViewModel.cs │ │ ├── ItemDetailViewModel.cs │ │ ├── ItemsViewModel.cs │ │ ├── LoginViewModel.cs │ │ └── NewItemViewModel.cs │ │ └── Views │ │ ├── AboutPage.xaml │ │ ├── AboutPage.xaml.cs │ │ ├── ItemDetailPage.xaml │ │ ├── ItemDetailPage.xaml.cs │ │ ├── ItemsPage.xaml │ │ ├── ItemsPage.xaml.cs │ │ ├── LoginPage.xaml │ │ ├── LoginPage.xaml.cs │ │ ├── NewItemPage.xaml │ │ └── NewItemPage.xaml.cs │ └── MyMauiApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Models │ └── Item.cs │ ├── MyMauiApp.csproj │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ ├── dotnet_bot.svg │ │ ├── icon_about.png │ │ ├── icon_feed.png │ │ └── xamarin_logo.png │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── Services │ ├── IDataStore.cs │ └── MockDataStore.cs │ ├── ViewModels │ ├── AboutViewModel.cs │ ├── BaseViewModel.cs │ ├── ItemDetailViewModel.cs │ ├── ItemsViewModel.cs │ ├── LoginViewModel.cs │ └── NewItemViewModel.cs │ └── Views │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── ItemDetailPage.xaml │ ├── ItemDetailPage.xaml.cs │ ├── ItemsPage.xaml │ ├── ItemsPage.xaml.cs │ ├── LoginPage.xaml │ ├── LoginPage.xaml.cs │ ├── NewItemPage.xaml │ └── NewItemPage.xaml.cs ├── Chapter04 ├── News.sln └── News │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Models │ └── NewsApiModels.cs │ ├── Navigator.cs │ ├── News.csproj │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── FontAwesome.otf │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── Services │ ├── INewsService.cs │ ├── NewsScope.cs │ └── NewsService.cs │ ├── Settings.cs │ ├── ViewModels │ ├── HeadlinesViewModel.cs │ ├── INavigate.cs │ └── ViewModel.cs │ └── Views │ ├── AboutView.xaml │ ├── AboutView.xaml.cs │ ├── ArticleItem.xaml │ ├── ArticleItem.xaml.cs │ ├── ArticleView.xaml │ ├── ArticleView.xaml.cs │ ├── HeadlinesView.xaml │ └── HeadlinesView.xaml.cs ├── Chapter05 ├── Swiper.sln └── Swiper │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Controls │ ├── SwiperControl.xaml │ └── SwiperControl.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── Swiper.csproj │ └── Utils │ ├── DescriptionGenerator.cs │ └── Picture.cs ├── Chapter06 ├── GalleryApp.sln └── GalleryApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppPermissions.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Converters │ └── BytesToImageConverter.cs │ ├── GalleryApp.csproj │ ├── MauiProgram.cs │ ├── Models │ └── Photo.cs │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── AppPermissions.cs │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ ├── PhotoImporter.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── PhotoImporter.cs │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── PhotoImporter.cs │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── PhotoImporter.cs │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── Services │ ├── ILocalStorage.cs │ ├── IPhotoImporter.cs │ ├── MauiLocalStorage.cs │ ├── Messages.cs │ ├── PhotoImporter.cs │ └── Quality.cs │ ├── ViewModels │ ├── GalleryViewModel.cs │ ├── MainViewModel.cs │ └── ViewModel.cs │ └── Views │ ├── GalleryView.xaml │ ├── GalleryView.xaml.cs │ ├── MainView.xaml │ └── MainView.xaml.cs ├── Chapter07 ├── MeTracker.sln └── MeTracker │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppPermissions.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Controls │ └── CustomMap.cs │ ├── MauiProgram.cs │ ├── MeTracker.csproj │ ├── Models │ ├── Location.cs │ └── Point.cs │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ ├── Resources │ │ │ └── values │ │ │ │ └── colors.xml │ │ └── Services │ │ │ ├── LocationJobService.cs │ │ │ └── LocationTrackingService.cs │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Program.cs │ │ └── Services │ │ │ └── LocationTrackingService.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Program.cs │ │ └── Services │ │ └── LocationTrackingService.cs │ ├── Properties │ └── launchSettings.json │ ├── Repositories │ ├── ILocationRepository.cs │ └── LocationRepository.cs │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── Services │ ├── ILocationTrackingService.cs │ └── LocationTrackingService.cs │ ├── ViewModels │ ├── MainViewModel.cs │ └── ViewModel.cs │ └── Views │ ├── MainView.xaml │ └── MainView.xaml.cs ├── Chapter08 ├── Weather.sln └── Weather │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppPermissions.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Behaviors │ └── FlexLayoutBehavior.cs │ ├── MauiProgram.cs │ ├── Models │ ├── Forecast.cs │ ├── ForecastGroup.cs │ ├── ForecastItem.cs │ └── WeatherData.cs │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ ├── dotnet_bot.svg │ │ └── refresh.png │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── Services │ ├── IWeatherService.cs │ └── OpenWeatherMapWeatherService.cs │ ├── ViewModels │ ├── MainViewModel.cs │ └── ViewModel.cs │ ├── Views │ ├── Desktop │ │ ├── MainView.xaml │ │ └── MainView.xaml.cs │ ├── IMainView.cs │ └── Mobile │ │ ├── MainView.xaml │ │ └── MainView.xaml.cs │ └── Weather.csproj ├── Chapter09-10 ├── SticksAndStones.App │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── AsyncError.cs │ ├── AsyncLazy~1.cs │ ├── Controls │ │ ├── ActivityButton.xaml │ │ ├── ActivityButton.xaml.cs │ │ └── GamePieceView.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Messages │ │ ├── ChallengeReceived.cs │ │ ├── MatchStarted.cs │ │ ├── MatchUpdated.cs │ │ └── ServiceError.cs │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── AppIcon │ │ │ ├── appicon.svg │ │ │ └── appiconfg.svg │ │ ├── Fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── OpenSans-Regular.ttf │ │ │ └── OpenSans-Semibold.ttf │ │ ├── Images │ │ │ ├── dotnet_bot.svg │ │ │ ├── hstick.jpeg │ │ │ ├── stones.jpeg │ │ │ └── vstick.jpeg │ │ ├── Raw │ │ │ └── AboutAssets.txt │ │ ├── Splash │ │ │ └── splash.svg │ │ └── Styles │ │ │ ├── Colors.xaml │ │ │ └── Styles.xaml │ ├── Services │ │ ├── GameService.cs │ │ ├── ServiceConnection.cs │ │ └── Settings.cs │ ├── SticksAndStones.App.csproj │ ├── ViewModels │ │ ├── ConnectViewModel.cs │ │ ├── LobbyViewModel.cs │ │ ├── MatchPlayerViewModel.cs │ │ ├── MatchViewModel.cs │ │ ├── PlayerViewModel.cs │ │ └── ViewModelBase.cs │ └── Views │ │ ├── ConnectView.xaml │ │ ├── ConnectView.xaml.cs │ │ ├── LobbyView.xaml │ │ ├── LobbyView.xaml.cs │ │ ├── MatchView.xaml │ │ └── MatchView.xaml.cs ├── SticksAndStones.Functions │ ├── .gitignore │ ├── Handlers │ │ └── ChallengeHandler.cs │ ├── Hubs │ │ └── GameHub.cs │ ├── Properties │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.local.json │ ├── Repository │ │ └── GameDbContext.cs │ ├── Startup.cs │ ├── SticksAndStones.Functions.csproj │ ├── host.json │ └── local.settings.json ├── SticksAndStones.Shared │ ├── Constants.cs │ ├── Messages │ │ ├── ChallengeEventArgs.cs │ │ ├── ChallengeMessages.cs │ │ ├── ConnectMessages.cs │ │ ├── GetAllPlayersMessages.cs │ │ ├── GetMatchMessages.cs │ │ ├── MatchStartedEventArgs.cs │ │ ├── MatchUpdatedEventArgs.cs │ │ ├── PlayerUpdatedEventArgs.cs │ │ └── ProcessTurnMessages.cs │ ├── Models │ │ ├── Challenge.cs │ │ ├── ChallengeResponse.cs │ │ ├── ConnectionInfo.cs │ │ ├── Match.cs │ │ └── Player.cs │ └── SticksAndStones.Shared.csproj └── SticksAndStones.sln ├── Chapter11 ├── Calculator.sln └── Calculator │ ├── App.xaml │ ├── App.xaml.cs │ ├── Calculator.csproj │ ├── Main.razor │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Pages │ ├── Keypad.razor │ └── Keypad.razor.css │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ └── OpenSans-Regular.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ └── Splash │ │ └── splash.svg │ ├── Services │ └── Compute.cs │ ├── Shared │ ├── MainLayout.razor │ └── MainLayout.razor.css │ ├── ViewModels │ ├── Calculations.cs │ └── MainPageViewModel.cs │ ├── _Imports.razor │ └── wwwroot │ ├── css │ ├── app.css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ ├── css │ │ └── open-iconic-bootstrap.min.css │ │ └── fonts │ │ ├── open-iconic.eot │ │ ├── open-iconic.otf │ │ ├── open-iconic.svg │ │ ├── open-iconic.ttf │ │ └── open-iconic.woff │ ├── favicon.ico │ └── index.html ├── Chapter12 ├── HotdogOrNot.sln └── HotdogOrNot │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppPermissions.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Converters │ └── BytesToImageConverter.cs │ ├── HotdogOrNot.csproj │ ├── ImageClassifier │ ├── ClassifierOutput.cs │ ├── IClassifier.cs │ └── MLNetClassifier.cs │ ├── MauiProgram.cs │ ├── Models │ └── Result.cs │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ ├── AboutAssets.txt │ │ └── hotdog-or-not.onnx │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── ViewModels │ ├── MainViewModel.cs │ └── ResultViewModel.cs │ └── Views │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── ResultView.xaml │ └── ResultView.xaml.cs ├── LICENSE ├── README.md └── global.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter02/DoToo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo.sln -------------------------------------------------------------------------------- /Chapter02/DoToo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/App.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Converters/FilterTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Converters/FilterTextConverter.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Converters/StatusColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Converters/StatusColorConverter.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/DoToo.csproj -------------------------------------------------------------------------------- /Chapter02/DoToo/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Models/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Models/TodoItem.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter02/DoToo/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter02/DoToo/Repositories/ITodoItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Repositories/ITodoItemRepository.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Repositories/TodoItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Repositories/TodoItemRepository.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter02/DoToo/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter02/DoToo/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter02/DoToo/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Chapter02/DoToo/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter02/DoToo/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter02/DoToo/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter02/DoToo/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/ViewModels/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/ViewModels/ItemViewModel.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/ViewModels/TodoItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/ViewModels/TodoItemViewModel.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Views/ItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Views/ItemView.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/Views/ItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Views/ItemView.xaml.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Views/MainView.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter02/DoToo/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/.gitattributes -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/.gitignore -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat.sln -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/BuildChat.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/BuildChat.Android.csproj -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/BuildChat.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/BuildChat.iOS.csproj -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat/App.xaml -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat/App.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat/BuildChat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat/BuildChat.csproj -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat/Converters/InverseBoolConverter.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat/MainPage.xaml -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat/Models/MessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat/Models/MessageModel.cs -------------------------------------------------------------------------------- /Chapter03/Build2019Chat/BuildChat/BuildChat/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Build2019Chat/BuildChat/BuildChat/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter03/Chat/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/.gitattributes -------------------------------------------------------------------------------- /Chapter03/Chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/.gitignore -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat.sln -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/BuildChat.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/BuildChat.Android.csproj -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/BuildChat.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/BuildChat.iOS.csproj -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat/App.xaml -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat/App.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat/BuildChat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat/BuildChat.csproj -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat/Converters/InverseBoolConverter.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat/MainPage.xaml -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat/Models/MessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat/Models/MessageModel.cs -------------------------------------------------------------------------------- /Chapter03/Chat/BuildChat/BuildChat/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/Chat/BuildChat/BuildChat/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration.sln -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/MauiMigration.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/MauiMigration.UWP.csproj -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/icon_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/icon_about.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/icon_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/icon_feed.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/xamarin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.UWP/xamarin_logo.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/MauiMigration.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/MauiMigration.iOS.csproj -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_about.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_about@2x.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_about@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_about@3x.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_feed.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_feed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_feed@2x.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_feed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/icon_feed@3x.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/xamarin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/xamarin_logo.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/xamarin_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/xamarin_logo@2x.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/xamarin_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration.iOS/Resources/xamarin_logo@3x.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/App.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/App.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/AppShell.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/GettingStarted.txt -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/MauiMigration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/MauiMigration.csproj -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Models/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Models/Item.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Services/IDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Services/IDataStore.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Services/MockDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Services/MockDataStore.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/ItemDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/ItemDetailViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/ItemsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/ItemsViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/NewItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/ViewModels/NewItemViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/AboutPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/ItemDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/ItemDetailPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/ItemDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/ItemDetailPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/ItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/ItemsPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/ItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/ItemsPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/LoginPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/LoginPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/NewItemPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/NewItemPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/NewItemPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MauiMigration/MauiMigration/Views/NewItemPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/App.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/App.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/AppShell.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/MainPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Models/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Models/Item.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/MyMauiApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/MyMauiApp.csproj -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Images/icon_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Images/icon_about.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Images/icon_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Images/icon_feed.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Images/xamarin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Images/xamarin_logo.png -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Services/IDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Services/IDataStore.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Services/MockDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Services/MockDataStore.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/ViewModels/ItemDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/ViewModels/ItemDetailViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/ViewModels/ItemsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/ViewModels/ItemsViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/ViewModels/NewItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/ViewModels/NewItemViewModel.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/AboutPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/ItemDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/ItemDetailPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/ItemDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/ItemDetailPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/ItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/ItemsPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/ItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/ItemsPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/LoginPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/LoginPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/NewItemPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/NewItemPage.xaml -------------------------------------------------------------------------------- /Chapter03/MauiMigration/MyMauiApp/Views/NewItemPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter03/MauiMigration/MyMauiApp/Views/NewItemPage.xaml.cs -------------------------------------------------------------------------------- /Chapter04/News.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News.sln -------------------------------------------------------------------------------- /Chapter04/News/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/App.xaml -------------------------------------------------------------------------------- /Chapter04/News/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/App.xaml.cs -------------------------------------------------------------------------------- /Chapter04/News/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/AppShell.xaml -------------------------------------------------------------------------------- /Chapter04/News/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter04/News/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/MainPage.xaml -------------------------------------------------------------------------------- /Chapter04/News/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter04/News/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter04/News/Models/NewsApiModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Models/NewsApiModels.cs -------------------------------------------------------------------------------- /Chapter04/News/Navigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Navigator.cs -------------------------------------------------------------------------------- /Chapter04/News/News.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/News.csproj -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter04/News/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter04/News/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter04/News/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter04/News/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter04/News/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter04/News/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter04/News/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter04/News/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter04/News/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter04/News/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter04/News/Resources/Fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/Fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter04/News/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter04/News/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Chapter04/News/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter04/News/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter04/News/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter04/News/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Chapter04/News/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Chapter04/News/Services/INewsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Services/INewsService.cs -------------------------------------------------------------------------------- /Chapter04/News/Services/NewsScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Services/NewsScope.cs -------------------------------------------------------------------------------- /Chapter04/News/Services/NewsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Services/NewsService.cs -------------------------------------------------------------------------------- /Chapter04/News/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Settings.cs -------------------------------------------------------------------------------- /Chapter04/News/ViewModels/HeadlinesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/ViewModels/HeadlinesViewModel.cs -------------------------------------------------------------------------------- /Chapter04/News/ViewModels/INavigate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/ViewModels/INavigate.cs -------------------------------------------------------------------------------- /Chapter04/News/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter04/News/Views/AboutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Views/AboutView.xaml -------------------------------------------------------------------------------- /Chapter04/News/Views/AboutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Views/AboutView.xaml.cs -------------------------------------------------------------------------------- /Chapter04/News/Views/ArticleItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Views/ArticleItem.xaml -------------------------------------------------------------------------------- /Chapter04/News/Views/ArticleItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Views/ArticleItem.xaml.cs -------------------------------------------------------------------------------- /Chapter04/News/Views/ArticleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Views/ArticleView.xaml -------------------------------------------------------------------------------- /Chapter04/News/Views/ArticleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Views/ArticleView.xaml.cs -------------------------------------------------------------------------------- /Chapter04/News/Views/HeadlinesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Views/HeadlinesView.xaml -------------------------------------------------------------------------------- /Chapter04/News/Views/HeadlinesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter04/News/Views/HeadlinesView.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Swiper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper.sln -------------------------------------------------------------------------------- /Chapter05/Swiper/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/App.xaml -------------------------------------------------------------------------------- /Chapter05/Swiper/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/App.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/AppShell.xaml -------------------------------------------------------------------------------- /Chapter05/Swiper/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Controls/SwiperControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Controls/SwiperControl.xaml -------------------------------------------------------------------------------- /Chapter05/Swiper/Controls/SwiperControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Controls/SwiperControl.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/MainPage.xaml -------------------------------------------------------------------------------- /Chapter05/Swiper/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter05/Swiper/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter05/Swiper/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter05/Swiper/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter05/Swiper/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter05/Swiper/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Chapter05/Swiper/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter05/Swiper/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter05/Swiper/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter05/Swiper/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Chapter05/Swiper/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Chapter05/Swiper/Swiper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Swiper.csproj -------------------------------------------------------------------------------- /Chapter05/Swiper/Utils/DescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Utils/DescriptionGenerator.cs -------------------------------------------------------------------------------- /Chapter05/Swiper/Utils/Picture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter05/Swiper/Utils/Picture.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp.sln -------------------------------------------------------------------------------- /Chapter06/GalleryApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/App.xaml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/App.xaml.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/AppPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/AppPermissions.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/AppShell.xaml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Converters/BytesToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Converters/BytesToImageConverter.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/GalleryApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/GalleryApp.csproj -------------------------------------------------------------------------------- /Chapter06/GalleryApp/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Models/Photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Models/Photo.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Android/AppPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Android/AppPermissions.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Android/PhotoImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Android/PhotoImporter.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/MacCatalyst/PhotoImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/MacCatalyst/PhotoImporter.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Windows/PhotoImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Windows/PhotoImporter.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/iOS/PhotoImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/iOS/PhotoImporter.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Services/ILocalStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Services/ILocalStorage.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Services/IPhotoImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Services/IPhotoImporter.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Services/MauiLocalStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Services/MauiLocalStorage.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Services/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Services/Messages.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Services/PhotoImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Services/PhotoImporter.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Services/Quality.cs: -------------------------------------------------------------------------------- 1 | namespace GalleryApp.Services; 2 | 3 | public enum Quality 4 | { 5 | Low, High 6 | } 7 | 8 | -------------------------------------------------------------------------------- /Chapter06/GalleryApp/ViewModels/GalleryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/ViewModels/GalleryViewModel.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Views/GalleryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Views/GalleryView.xaml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Views/GalleryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Views/GalleryView.xaml.cs -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Views/MainView.xaml -------------------------------------------------------------------------------- /Chapter06/GalleryApp/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter06/GalleryApp/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker.sln -------------------------------------------------------------------------------- /Chapter07/MeTracker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/App.xaml -------------------------------------------------------------------------------- /Chapter07/MeTracker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/App.xaml.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/AppPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/AppPermissions.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/AppShell.xaml -------------------------------------------------------------------------------- /Chapter07/MeTracker/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Controls/CustomMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Controls/CustomMap.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/MeTracker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/MeTracker.csproj -------------------------------------------------------------------------------- /Chapter07/MeTracker/Models/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Models/Location.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Models/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Models/Point.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Android/Services/LocationJobService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Android/Services/LocationJobService.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Android/Services/LocationTrackingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Android/Services/LocationTrackingService.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/MacCatalyst/Services/LocationTrackingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/MacCatalyst/Services/LocationTrackingService.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Platforms/iOS/Services/LocationTrackingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Platforms/iOS/Services/LocationTrackingService.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter07/MeTracker/Repositories/ILocationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Repositories/ILocationRepository.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Repositories/LocationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Repositories/LocationRepository.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter07/MeTracker/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter07/MeTracker/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter07/MeTracker/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Chapter07/MeTracker/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter07/MeTracker/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter07/MeTracker/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter07/MeTracker/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Chapter07/MeTracker/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Chapter07/MeTracker/Services/ILocationTrackingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Services/ILocationTrackingService.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Services/LocationTrackingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Services/LocationTrackingService.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter07/MeTracker/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Views/MainView.xaml -------------------------------------------------------------------------------- /Chapter07/MeTracker/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter07/MeTracker/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter08/Weather.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather.sln -------------------------------------------------------------------------------- /Chapter08/Weather/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/App.xaml -------------------------------------------------------------------------------- /Chapter08/Weather/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/App.xaml.cs -------------------------------------------------------------------------------- /Chapter08/Weather/AppPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/AppPermissions.cs -------------------------------------------------------------------------------- /Chapter08/Weather/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/AppShell.xaml -------------------------------------------------------------------------------- /Chapter08/Weather/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Behaviors/FlexLayoutBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Behaviors/FlexLayoutBehavior.cs -------------------------------------------------------------------------------- /Chapter08/Weather/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Models/Forecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Models/Forecast.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Models/ForecastGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Models/ForecastGroup.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Models/ForecastItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Models/ForecastItem.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Models/WeatherData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Models/WeatherData.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter08/Weather/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/Images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/Images/refresh.png -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Chapter08/Weather/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Chapter08/Weather/Services/IWeatherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Services/IWeatherService.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Services/OpenWeatherMapWeatherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Services/OpenWeatherMapWeatherService.cs -------------------------------------------------------------------------------- /Chapter08/Weather/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter08/Weather/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Views/Desktop/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Views/Desktop/MainView.xaml -------------------------------------------------------------------------------- /Chapter08/Weather/Views/Desktop/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Views/Desktop/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Views/IMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Views/IMainView.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Views/Mobile/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Views/Mobile/MainView.xaml -------------------------------------------------------------------------------- /Chapter08/Weather/Views/Mobile/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Views/Mobile/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter08/Weather/Weather.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter08/Weather/Weather.csproj -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/App.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/App.xaml.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/AppShell.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/AsyncError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/AsyncError.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/AsyncLazy~1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/AsyncLazy~1.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Controls/ActivityButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Controls/ActivityButton.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Controls/ActivityButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Controls/ActivityButton.xaml.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Controls/GamePieceView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Controls/GamePieceView.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/MainPage.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Messages/ChallengeReceived.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Messages/ChallengeReceived.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Messages/MatchStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Messages/MatchStarted.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Messages/MatchUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Messages/MatchUpdated.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Messages/ServiceError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Messages/ServiceError.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Images/hstick.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Images/hstick.jpeg -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Images/stones.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Images/stones.jpeg -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Images/vstick.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Images/vstick.jpeg -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Services/GameService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Services/GameService.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Services/ServiceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Services/ServiceConnection.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Services/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Services/Settings.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/SticksAndStones.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/SticksAndStones.App.csproj -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/ViewModels/ConnectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/ViewModels/ConnectViewModel.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/ViewModels/LobbyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/ViewModels/LobbyViewModel.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/ViewModels/MatchPlayerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/ViewModels/MatchPlayerViewModel.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/ViewModels/MatchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/ViewModels/MatchViewModel.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/ViewModels/PlayerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/ViewModels/PlayerViewModel.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Views/ConnectView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Views/ConnectView.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Views/ConnectView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Views/ConnectView.xaml.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Views/LobbyView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Views/LobbyView.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Views/LobbyView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Views/LobbyView.xaml.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Views/MatchView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Views/MatchView.xaml -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.App/Views/MatchView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.App/Views/MatchView.xaml.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/.gitignore -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/Handlers/ChallengeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/Handlers/ChallengeHandler.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/Hubs/GameHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/Hubs/GameHub.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/Repository/GameDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/Repository/GameDbContext.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/Startup.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/SticksAndStones.Functions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/SticksAndStones.Functions.csproj -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/host.json -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Functions/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Functions/local.settings.json -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Constants.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Messages/ChallengeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Messages/ChallengeEventArgs.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Messages/ChallengeMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Messages/ChallengeMessages.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Messages/ConnectMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Messages/ConnectMessages.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Messages/GetAllPlayersMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Messages/GetAllPlayersMessages.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Messages/GetMatchMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Messages/GetMatchMessages.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Messages/MatchStartedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Messages/MatchStartedEventArgs.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Messages/MatchUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Messages/MatchUpdatedEventArgs.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Messages/PlayerUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Messages/PlayerUpdatedEventArgs.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Messages/ProcessTurnMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Messages/ProcessTurnMessages.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Models/Challenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Models/Challenge.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Models/ChallengeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Models/ChallengeResponse.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Models/ConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Models/ConnectionInfo.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Models/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Models/Match.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/Models/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/Models/Player.cs -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.Shared/SticksAndStones.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.Shared/SticksAndStones.Shared.csproj -------------------------------------------------------------------------------- /Chapter09-10/SticksAndStones.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter09-10/SticksAndStones.sln -------------------------------------------------------------------------------- /Chapter11/Calculator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator.sln -------------------------------------------------------------------------------- /Chapter11/Calculator/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/App.xaml -------------------------------------------------------------------------------- /Chapter11/Calculator/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/App.xaml.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Calculator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Calculator.csproj -------------------------------------------------------------------------------- /Chapter11/Calculator/Main.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Main.razor -------------------------------------------------------------------------------- /Chapter11/Calculator/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/MainPage.xaml -------------------------------------------------------------------------------- /Chapter11/Calculator/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Pages/Keypad.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Pages/Keypad.razor -------------------------------------------------------------------------------- /Chapter11/Calculator/Pages/Keypad.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Pages/Keypad.razor.css -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter11/Calculator/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter11/Calculator/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter11/Calculator/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter11/Calculator/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter11/Calculator/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter11/Calculator/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter11/Calculator/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter11/Calculator/Services/Compute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Services/Compute.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Chapter11/Calculator/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /Chapter11/Calculator/ViewModels/Calculations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/ViewModels/Calculations.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter11/Calculator/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/_Imports.razor -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/app.css -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter11/Calculator/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter11/Calculator/wwwroot/index.html -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot.sln -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/App.xaml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/App.xaml.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/AppPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/AppPermissions.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/AppShell.xaml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Converters/BytesToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Converters/BytesToImageConverter.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/HotdogOrNot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/HotdogOrNot.csproj -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/ImageClassifier/ClassifierOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/ImageClassifier/ClassifierOutput.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/ImageClassifier/IClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/ImageClassifier/IClassifier.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/ImageClassifier/MLNetClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/ImageClassifier/MLNetClassifier.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/MauiProgram.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Models/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Models/Result.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/Raw/hotdog-or-not.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/Raw/hotdog-or-not.onnx -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/ViewModels/ResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/ViewModels/ResultViewModel.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Views/MainView.xaml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Views/ResultView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Views/ResultView.xaml -------------------------------------------------------------------------------- /Chapter12/HotdogOrNot/Views/ResultView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/Chapter12/HotdogOrNot/Views/ResultView.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MAUI-Projects-3rd-Edition/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | {"sdk":{"version": "7.0.x" }} --------------------------------------------------------------------------------