├── .DS_Store ├── .gitignore ├── Chapter02 ├── DoToo.sln └── DoToo │ ├── DoToo.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── Bootstrapper.cs │ ├── DoToo.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 │ ├── DoToo.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 │ ├── Bootstrapper.cs │ ├── DoToo.UWP.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── DoToo.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 │ ├── Bootstrapper.cs │ ├── DoToo.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 │ └── DoToo │ ├── App.xaml │ ├── App.xaml.cs │ ├── Bootstrapper.cs │ ├── Converters │ └── StatusColorConverter.cs │ ├── DoToo.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Models │ └── TodoItem.cs │ ├── Repositories │ ├── ITodoItemRepository.cs │ └── TodoItemRepository.cs │ ├── Resolver.cs │ ├── ViewModels │ ├── ItemViewModel.cs │ ├── MainViewModel.cs │ ├── TodoItemViewModel.cs │ └── ViewModel.cs │ └── Views │ ├── ItemView.xaml │ ├── ItemView.xaml.cs │ ├── MainView.xaml │ └── MainView.xaml.cs ├── Chapter03 ├── Swiper.sln └── Swiper │ ├── Swiper.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── 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 │ └── Swiper.Android.csproj │ ├── Swiper.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 │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── Swiper.UWP.csproj │ ├── Swiper.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 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── Swiper.iOS.csproj │ └── Swiper │ ├── App.xaml │ ├── App.xaml.cs │ ├── Controls │ ├── SwiperControl.xaml │ └── SwiperControl.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Swiper.csproj │ └── Utils │ ├── DescriptionGenerator.cs │ └── Picture.cs ├── Chapter04 ├── MeTracker.sln └── MeTracker │ ├── MeTracker.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── Bootstrapper.cs │ ├── MainActivity.cs │ ├── MeTracker.Android.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ └── CustomMapRenderer.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 │ └── Services │ │ ├── LocationJobService.cs │ │ └── LocationTrackingService.cs │ ├── MeTracker.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 │ ├── Bootstrapper.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── MeTracker.iOS.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ └── CustomMapRenderer.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── Services │ │ └── LocationTrackingService.cs │ └── MeTracker │ ├── App.xaml │ ├── App.xaml.cs │ ├── Bootstrapper.cs │ ├── Controls │ └── CustomMap.cs │ ├── MeTracker.csproj │ ├── Models │ ├── Location.cs │ └── Point.cs │ ├── Repositories │ ├── ILocationRepository.cs │ └── LocationRepository.cs │ ├── Resolver.cs │ ├── Services │ └── ILocationTrackingService.cs │ ├── ViewModels │ ├── MainViewModel.cs │ └── ViewModel.cs │ └── Views │ ├── MainView.xaml │ └── MainView.xaml.cs ├── Chapter05 ├── Weather.sln └── Weather │ ├── Weather.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ └── refresh.png │ │ ├── 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 │ └── Weather.Android.csproj │ ├── Weather.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 │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Weather.UWP.csproj │ └── refresh.png │ ├── Weather.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 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── LaunchScreen.storyboard │ │ └── refresh@2x.png │ └── Weather.iOS.csproj │ └── Weather │ ├── App.xaml │ ├── App.xaml.cs │ ├── Behaviors │ └── RepeaterViewBehavior.cs │ ├── Bootstrapper.cs │ ├── Controls │ └── RepeaterView.cs │ ├── Models │ ├── Forecast.cs │ ├── ForecastGroup.cs │ ├── ForecastItem.cs │ └── WeatherData.cs │ ├── Resolver.cs │ ├── Services │ ├── IWeatherService.cs │ └── OpenWeatherMapService.cs │ ├── ViewModels │ ├── MainViewModel.cs │ └── ViewModel.cs │ ├── Views │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── MainView_Phone.xaml │ └── MainView_Phone.xaml.cs │ └── Weather.csproj ├── Chapter06-07 ├── Chat.Functions │ ├── .gitignore │ ├── Chat.Functions.csproj │ ├── ClearPhotos.cs │ ├── GetSignalRInfo.cs │ ├── Messages.cs │ ├── StorageHelper.cs │ └── host.json ├── Chat.Messages │ ├── Chat.Messages.csproj │ ├── ConnectionInfo.cs │ ├── LocalSimpleTextMessage.cs │ ├── Message.cs │ ├── PhotoMessage.cs │ ├── PhotoUrlMessage.cs │ ├── SimpleTextMessage.cs │ └── UserConnectedMessage.cs ├── Chat.sln └── Chat │ ├── Chat.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── Chat.Android.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ ├── chat.png │ │ ├── photo.png │ │ └── send.png │ │ ├── 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 │ │ └── xml │ │ └── file_paths.xml │ ├── Chat.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 │ ├── Chat.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 │ │ ├── chat@2x.png │ │ ├── photo@2x.png │ │ └── send@2x.png │ └── Chat │ ├── App.xaml │ ├── App.xaml.cs │ ├── Bootstrapper.cs │ ├── Chat.csproj │ ├── Chat │ ├── ChatService.cs │ └── IChatService.cs │ ├── Converters │ └── Base64ImageConverter.cs │ ├── Css │ └── Styles.css │ ├── Events │ └── NewMessageEventArgs.cs │ ├── Models │ └── ConnectionInfo.cs │ ├── Resolver.cs │ ├── Selectors │ └── ChatMessageSelector.cs │ ├── ViewModels │ ├── ChatViewModel.cs │ ├── MainViewModel.cs │ └── ViewModel.cs │ └── Views │ ├── ChatView.xaml │ ├── ChatView.xaml.cs │ ├── MainView.xaml │ └── MainView.xaml.cs ├── Chapter08 ├── WhackABox.sln └── WhackABox │ ├── WhackABox.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ └── ARViewRenderer.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 │ └── WhackABox.Android.csproj │ ├── WhackABox.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 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ └── ARViewRenderer.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── WhackABox.iOS.csproj │ └── WhackABox │ ├── App.xaml │ ├── App.xaml.cs │ ├── Controls │ └── ARView.cs │ ├── Death.cs │ ├── Game.Android.cs │ ├── Game.cs │ ├── Game.iOS.cs │ ├── GameStats.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── PlaneNode.cs │ ├── Rotator.cs │ ├── WhackABox.projitems │ └── WhackABox.shproj ├── Chapter09 ├── HotdogOrNot.sln └── HotdogOrNot │ ├── HotdogOrNot.Android │ ├── Assets │ │ ├── AboutAssets.txt │ │ ├── hotdog-or-not-labels.txt │ │ └── hotdog-or-not-model.pb │ ├── Bootstrapper.cs │ ├── HotdogOrNot.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 │ │ └── xml │ │ │ └── file_paths.xml │ └── TensorflowClassifier.cs │ ├── HotdogOrNot.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 │ ├── Bootstrapper.cs │ ├── CoreMLClassifier.cs │ ├── Entitlements.plist │ ├── HotdogOrNot.iOS.csproj │ ├── 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 │ │ ├── hotdog-or-not.cs │ │ └── hotdog-or-not.mlmodel │ └── HotdogOrNot │ ├── App.xaml │ ├── App.xaml.cs │ ├── Bootstrapper.cs │ ├── ClassificationEventArgs.cs │ ├── Converters │ └── BytesToImageConverter.cs │ ├── HotdogOrNot.csproj │ ├── IClassifier.cs │ ├── Models │ └── Result.cs │ ├── Resolver.cs │ ├── ViewModels │ ├── MainViewModel.cs │ ├── ResultViewModel.cs │ └── ViewModel.cs │ └── Views │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── ResultView.xaml │ └── ResultView.xaml.cs ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter02/DoToo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo.sln -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/DoToo.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/DoToo.Android.csproj -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/DoToo.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/DoToo.UWP.csproj -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/DoToo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/DoToo.iOS.csproj -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/App.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Converters/StatusColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Converters/StatusColorConverter.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/DoToo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/DoToo.csproj -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/FodyWeavers.xml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/FodyWeavers.xsd -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Models/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Models/TodoItem.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Repositories/ITodoItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Repositories/ITodoItemRepository.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Repositories/TodoItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Repositories/TodoItemRepository.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Resolver.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/ViewModels/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/ViewModels/ItemViewModel.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/ViewModels/TodoItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/ViewModels/TodoItemViewModel.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Views/ItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Views/ItemView.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Views/ItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Views/ItemView.xaml.cs -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Views/MainView.xaml -------------------------------------------------------------------------------- /Chapter02/DoToo/DoToo/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter02/DoToo/DoToo/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Swiper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper.sln -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.Android/Swiper.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.Android/Swiper.Android.csproj -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.UWP/Swiper.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.UWP/Swiper.UWP.csproj -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper.iOS/Swiper.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper.iOS/Swiper.iOS.csproj -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper/App.xaml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper/App.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper/Controls/SwiperControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper/Controls/SwiperControl.xaml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper/Controls/SwiperControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper/Controls/SwiperControl.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper/MainPage.xaml -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper/Swiper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper/Swiper.csproj -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper/Utils/DescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper/Utils/DescriptionGenerator.cs -------------------------------------------------------------------------------- /Chapter03/Swiper/Swiper/Utils/Picture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter03/Swiper/Swiper/Utils/Picture.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker.sln -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/MeTracker.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/MeTracker.Android.csproj -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Renderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Renderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Services/LocationJobService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Services/LocationJobService.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.Android/Services/LocationTrackingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.Android/Services/LocationTrackingService.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/MeTracker.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/MeTracker.iOS.csproj -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Renderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Renderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker.iOS/Services/LocationTrackingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker.iOS/Services/LocationTrackingService.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/App.xaml -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/App.xaml.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Controls/CustomMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Controls/CustomMap.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/MeTracker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/MeTracker.csproj -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Models/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Models/Location.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Models/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Models/Point.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Repositories/ILocationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Repositories/ILocationRepository.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Repositories/LocationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Repositories/LocationRepository.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Resolver.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Services/ILocationTrackingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Services/ILocationTrackingService.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Views/MainView.xaml -------------------------------------------------------------------------------- /Chapter04/MeTracker/MeTracker/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter04/MeTracker/MeTracker/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Weather.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather.sln -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/drawable/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/drawable/refresh.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.Android/Weather.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.Android/Weather.Android.csproj -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/Weather.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/Weather.UWP.csproj -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.UWP/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.UWP/refresh.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Resources/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Resources/refresh@2x.png -------------------------------------------------------------------------------- /Chapter05/Weather/Weather.iOS/Weather.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather.iOS/Weather.iOS.csproj -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/App.xaml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/App.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Behaviors/RepeaterViewBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Behaviors/RepeaterViewBehavior.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Controls/RepeaterView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Controls/RepeaterView.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Models/Forecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Models/Forecast.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Models/ForecastGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Models/ForecastGroup.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Models/ForecastItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Models/ForecastItem.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Models/WeatherData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Models/WeatherData.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Resolver.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Services/IWeatherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Services/IWeatherService.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Services/OpenWeatherMapService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Services/OpenWeatherMapService.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Views/MainView.xaml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Views/MainView_Phone.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Views/MainView_Phone.xaml -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Views/MainView_Phone.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Views/MainView_Phone.xaml.cs -------------------------------------------------------------------------------- /Chapter05/Weather/Weather/Weather.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter05/Weather/Weather/Weather.csproj -------------------------------------------------------------------------------- /Chapter06-07/Chat.Functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Functions/.gitignore -------------------------------------------------------------------------------- /Chapter06-07/Chat.Functions/Chat.Functions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Functions/Chat.Functions.csproj -------------------------------------------------------------------------------- /Chapter06-07/Chat.Functions/ClearPhotos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Functions/ClearPhotos.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Functions/GetSignalRInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Functions/GetSignalRInfo.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Functions/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Functions/Messages.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Functions/StorageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Functions/StorageHelper.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Functions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Chapter06-07/Chat.Messages/Chat.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Messages/Chat.Messages.csproj -------------------------------------------------------------------------------- /Chapter06-07/Chat.Messages/ConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Messages/ConnectionInfo.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Messages/LocalSimpleTextMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Messages/LocalSimpleTextMessage.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Messages/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Messages/Message.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Messages/PhotoMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Messages/PhotoMessage.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Messages/PhotoUrlMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Messages/PhotoUrlMessage.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Messages/SimpleTextMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Messages/SimpleTextMessage.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.Messages/UserConnectedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.Messages/UserConnectedMessage.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat.sln -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Chat.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Chat.Android.csproj -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/drawable/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/drawable/chat.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/drawable/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/drawable/photo.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/drawable/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/drawable/send.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.Android/Resources/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.Android/Resources/xml/file_paths.xml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Chat.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Chat.iOS.csproj -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Resources/chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Resources/chat@2x.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Resources/photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Resources/photo@2x.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat.iOS/Resources/send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat.iOS/Resources/send@2x.png -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/App.xaml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/App.xaml.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Chat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Chat.csproj -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Chat/ChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Chat/ChatService.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Chat/IChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Chat/IChatService.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Converters/Base64ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Converters/Base64ImageConverter.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Css/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Css/Styles.css -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Events/NewMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Events/NewMessageEventArgs.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Models/ConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Models/ConnectionInfo.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Resolver.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Selectors/ChatMessageSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Selectors/ChatMessageSelector.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/ViewModels/ChatViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/ViewModels/ChatViewModel.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Views/ChatView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Views/ChatView.xaml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Views/ChatView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Views/ChatView.xaml.cs -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Views/MainView.xaml -------------------------------------------------------------------------------- /Chapter06-07/Chat/Chat/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter06-07/Chat/Chat/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox.sln -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Renderers/ARViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Renderers/ARViewRenderer.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.Android/WhackABox.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.Android/WhackABox.Android.csproj -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Renderers/ARViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Renderers/ARViewRenderer.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox.iOS/WhackABox.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox.iOS/WhackABox.iOS.csproj -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/App.xaml -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/App.xaml.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/Controls/ARView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/Controls/ARView.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/Death.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/Death.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/Game.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/Game.Android.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/Game.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/Game.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/Game.iOS.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/GameStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/GameStats.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/MainPage.xaml -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/PlaneNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/PlaneNode.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/Rotator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/Rotator.cs -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/WhackABox.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/WhackABox.projitems -------------------------------------------------------------------------------- /Chapter08/WhackABox/WhackABox/WhackABox.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter08/WhackABox/WhackABox/WhackABox.shproj -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot.sln -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Assets/hotdog-or-not-labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Assets/hotdog-or-not-labels.txt -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Assets/hotdog-or-not-model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Assets/hotdog-or-not-model.pb -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/HotdogOrNot.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/HotdogOrNot.Android.csproj -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/Resources/xml/file_paths.xml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.Android/TensorflowClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.Android/TensorflowClassifier.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/CoreMLClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/CoreMLClassifier.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/HotdogOrNot.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/HotdogOrNot.iOS.csproj -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/hotdog-or-not.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/hotdog-or-not.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot.iOS/Resources/hotdog-or-not.mlmodel -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/App.xaml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/App.xaml.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/Bootstrapper.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/ClassificationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/ClassificationEventArgs.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/Converters/BytesToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/Converters/BytesToImageConverter.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/HotdogOrNot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/HotdogOrNot.csproj -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/IClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/IClassifier.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/Models/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/Models/Result.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/Resolver.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/ViewModels/ResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/ViewModels/ResultViewModel.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/Views/MainView.xaml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/Views/ResultView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/Views/ResultView.xaml -------------------------------------------------------------------------------- /Chapter09/HotdogOrNot/HotdogOrNot/Views/ResultView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/Chapter09/HotdogOrNot/HotdogOrNot/Views/ResultView.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin.Forms-Projects/HEAD/README.md --------------------------------------------------------------------------------