├── Chapter01 └── PlanetaryApp │ ├── Chapter02 │ └── PhotoLibrary │ │ └── PhotoLibrary │ │ ├── Assets │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── PhotoLibrary.csproj │ │ ├── PhotoLibrary.sln │ │ ├── PhotoLibraryActivity.cs │ │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Main.axml │ │ │ └── PhotoLibraryUI.axml │ │ ├── mipmap-hdpi │ │ │ └── Icon.png │ │ ├── mipmap-mdpi │ │ │ └── Icon.png │ │ ├── mipmap-xhdpi │ │ │ └── Icon.png │ │ ├── mipmap-xxhdpi │ │ │ └── Icon.png │ │ ├── mipmap-xxxhdpi │ │ │ └── Icon.png │ │ └── values │ │ │ ├── Strings.xml │ │ │ └── styles.xml │ │ └── packages.config │ ├── PlanetaryApp.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── PlanetaryApp.Android.csproj │ ├── 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 │ ├── PlanetaryApp.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 │ ├── PlanetaryApp.iOS.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ ├── PlanetaryApp.sln │ └── PlanetaryApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ └── PlanetaryApp.csproj ├── Chapter02 └── PhotoLibrary │ ├── Assets │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── PhotoLibrary.csproj │ ├── PhotoLibrary.sln │ ├── PhotoLibraryActivity.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── layout │ │ ├── Main.axml │ │ └── PhotoLibraryUI.axml │ ├── mipmap-hdpi │ │ └── Icon.png │ ├── mipmap-mdpi │ │ └── Icon.png │ ├── mipmap-xhdpi │ │ └── Icon.png │ ├── mipmap-xxhdpi │ │ └── Icon.png │ ├── mipmap-xxxhdpi │ │ └── Icon.png │ └── values │ │ ├── Strings.xml │ │ └── styles.xml │ └── packages.config ├── Chapter03 ├── Assets.zip └── SlidingTiles │ ├── SlidingTiles.sln │ └── SlidingTiles │ ├── AppDelegate.cs │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Classes │ └── GameTile.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Interfaces │ └── IGameTile.cs │ ├── LaunchScreen.storyboard │ ├── Main copy.storyboard │ ├── Main.cs │ ├── Main.storyboard │ ├── Resources │ └── game_tile.png │ ├── SlidingTiles.csproj │ ├── ViewController.cs │ └── ViewController.designer.cs ├── Chapter04 └── TrackMyWalks │ ├── TrackMyWalks.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.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 │ └── TrackMyWalks.Android.csproj │ ├── TrackMyWalks.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 │ └── TrackMyWalks.iOS.csproj │ ├── TrackMyWalks.sln │ └── TrackMyWalks │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── WalkDataModel.cs │ ├── TrackMyWalks.csproj │ └── Views │ ├── SplashPage.xaml │ ├── SplashPage.xaml.cs │ ├── WalkDistancePage.xaml │ ├── WalkDistancePage.xaml.cs │ ├── WalkEntryPage.xaml │ ├── WalkEntryPage.xaml.cs │ ├── WalkTrailInfoPage.xaml │ ├── WalkTrailInfoPage.xaml.cs │ ├── WalksMainPage.xaml │ └── WalksMainPage.xaml.cs ├── Chapter05 └── TrackMyWalks │ ├── TrackMyWalks.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.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 │ └── TrackMyWalks.Android.csproj │ ├── TrackMyWalks.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 │ ├── Info.plist.bak.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 │ └── TrackMyWalks.iOS.csproj │ ├── TrackMyWalks.sln │ └── TrackMyWalks │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── WalkDataModel.cs │ ├── TrackMyWalks.csproj │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── WalkDistancePageViewModel.cs │ ├── WalkEntryPageViewModel.cs │ ├── WalkTrailInfoPageViewModel.cs │ └── WalksMainPageViewModel.cs │ └── Views │ ├── SplashPage.xaml │ ├── SplashPage.xaml.cs │ ├── WalkDistancePage.xaml │ ├── WalkDistancePage.xaml.cs │ ├── WalkEntryPage.xaml │ ├── WalkEntryPage.xaml.cs │ ├── WalkTrailInfoPage.xaml │ ├── WalkTrailInfoPage.xaml.cs │ ├── WalksMainPage.xaml │ └── WalksMainPage.xaml.cs ├── Chapter06 └── TrackMyWalks │ ├── TrackMyWalks.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.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 │ └── TrackMyWalks.Android.csproj │ ├── TrackMyWalks.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 │ ├── Info.plist.bak.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 │ └── TrackMyWalks.iOS.csproj │ ├── TrackMyWalks.sln │ └── TrackMyWalks │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── WalkDataModel.cs │ ├── Services │ ├── INavigationService.cs │ └── NavigationService.cs │ ├── TrackMyWalks.csproj │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── WalkDistancePageViewModel.cs │ ├── WalkEntryPageViewModel.cs │ ├── WalkTrailInfoPageViewModel.cs │ └── WalksMainPageViewModel.cs │ └── Views │ ├── SplashPage.xaml │ ├── SplashPage.xaml.cs │ ├── WalkDistancePage.xaml │ ├── WalkDistancePage.xaml.cs │ ├── WalkEntryPage.xaml │ ├── WalkEntryPage.xaml.cs │ ├── WalkTrailInfoPage.xaml │ ├── WalkTrailInfoPage.xaml.cs │ ├── WalksMainPage.xaml │ └── WalksMainPage.xaml.cs ├── Chapter07 └── TrackMyWalks │ ├── TrackMyWalks.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── CustomRenderers │ │ └── CustomMapRenderer.cs │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.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 │ └── TrackMyWalks.Android.csproj │ ├── TrackMyWalks.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 │ ├── CustomRenderers │ │ └── CustomMapRenderer.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Info.plist.bak.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 │ └── TrackMyWalks.iOS.csproj │ ├── TrackMyWalks.sln │ └── TrackMyWalks │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── WalkDataModel.cs │ ├── Services │ ├── ILocationService.cs │ ├── INavigationService.cs │ ├── LocationService.cs │ └── NavigationService.cs │ ├── TrackMyWalks.csproj │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── WalkDistancePageViewModel.cs │ ├── WalkEntryPageViewModel.cs │ ├── WalkTrailInfoPageViewModel.cs │ └── WalksMainPageViewModel.cs │ └── Views │ ├── CustomMapOverlay.cs │ ├── SplashPage.xaml │ ├── SplashPage.xaml.cs │ ├── WalkDistancePage.xaml │ ├── WalkDistancePage.xaml.cs │ ├── WalkEntryPage.xaml │ ├── WalkEntryPage.xaml.cs │ ├── WalkTrailInfoPage.xaml │ ├── WalkTrailInfoPage.xaml.cs │ ├── WalksMainPage.xaml │ └── WalksMainPage.xaml.cs ├── Chapter08 └── TrackMyWalks │ ├── TrackMyWalks.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── CustomEffects │ │ ├── ButtonShadowEffect.cs │ │ └── LabelShadowEffect.cs │ ├── CustomRenderers │ │ └── CustomMapRenderer.cs │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.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 │ └── TrackMyWalks.Android.csproj │ ├── TrackMyWalks.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 │ ├── CustomEffects │ │ ├── ButtonShadowEffect.cs │ │ └── LabelShadowEffect.cs │ ├── CustomRenderers │ │ └── CustomMapRenderer.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Info.plist.bak.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 │ └── TrackMyWalks.iOS.csproj │ ├── TrackMyWalks.sln │ └── TrackMyWalks │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomEffects │ ├── ButtonShadowEffect.cs │ └── LabelShadowEffect.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── WalkDataModel.cs │ ├── Services │ ├── ILocationService.cs │ ├── INavigationService.cs │ ├── LocationService.cs │ └── NavigationService.cs │ ├── TrackMyWalks.csproj │ ├── ValueConverters │ └── ImageConverter.cs │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── WalkDistancePageViewModel.cs │ ├── WalkEntryPageViewModel.cs │ ├── WalkTrailInfoPageViewModel.cs │ └── WalksMainPageViewModel.cs │ └── Views │ ├── CustomMapOverlay.cs │ ├── SplashPage.xaml │ ├── SplashPage.xaml.cs │ ├── WalkDistancePage.xaml │ ├── WalkDistancePage.xaml.cs │ ├── WalkEntryPage.xaml │ ├── WalkEntryPage.xaml.cs │ ├── WalkTrailInfoPage.xaml │ ├── WalkTrailInfoPage.xaml.cs │ ├── WalksMainPage.xaml │ └── WalksMainPage.xaml.cs ├── Chapter09 └── TrackMyWalks │ ├── TrackMyWalks.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── CustomEffects │ │ ├── ButtonShadowEffect.cs │ │ └── LabelShadowEffect.cs │ ├── CustomRenderers │ │ └── CustomMapRenderer.cs │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.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 │ └── TrackMyWalks.Android.csproj │ ├── TrackMyWalks.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 │ ├── CustomEffects │ │ ├── ButtonShadowEffect.cs │ │ └── LabelShadowEffect.cs │ ├── CustomRenderers │ │ └── CustomMapRenderer.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Info.plist.bak.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 │ └── TrackMyWalks.iOS.csproj │ ├── TrackMyWalks.sln │ └── TrackMyWalks │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomEffects │ ├── ButtonShadowEffect.cs │ └── LabelShadowEffect.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── WalkDataModel.cs │ ├── Services │ ├── ILocationService.cs │ ├── INavigationService.cs │ ├── LocationService.cs │ └── NavigationService.cs │ ├── TrackMyWalks.csproj │ ├── ValueConverters │ └── ImageConverter.cs │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── WalkDistancePageViewModel.cs │ ├── WalkEntryPageViewModel.cs │ ├── WalkTrailInfoPageViewModel.cs │ └── WalksMainPageViewModel.cs │ └── Views │ ├── CustomMapOverlay.cs │ ├── SplashPage.xaml │ ├── SplashPage.xaml.cs │ ├── WalkDistancePage.xaml │ ├── WalkDistancePage.xaml.cs │ ├── WalkEntryPage.xaml │ ├── WalkEntryPage.xaml.cs │ ├── WalkTrailInfoPage.xaml │ ├── WalkTrailInfoPage.xaml.cs │ ├── WalksMainPage.xaml │ └── WalksMainPage.xaml.cs ├── Chapter10 ├── BookLibrary.Droid.zip └── BookLibrary.iOS.zip ├── Chapter11 └── TrackMyWalks │ ├── TrackMyWalks.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── CustomEffects │ │ ├── ButtonShadowEffect.cs │ │ └── LabelShadowEffect.cs │ ├── CustomRenderers │ │ └── CustomMapRenderer.cs │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.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 │ └── TrackMyWalks.Android.csproj │ ├── TrackMyWalks.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 │ ├── CustomEffects │ │ ├── ButtonShadowEffect.cs │ │ └── LabelShadowEffect.cs │ ├── CustomRenderers │ │ └── CustomMapRenderer.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Info.plist.bak.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 │ └── TrackMyWalks.iOS.csproj │ ├── TrackMyWalks.sln │ └── TrackMyWalks │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomEffects │ ├── ButtonShadowEffect.cs │ └── LabelShadowEffect.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── WalkDataModel.cs │ ├── Services │ ├── ILocationService.cs │ ├── INavigationService.cs │ ├── IRestWebService.cs │ ├── LocationService.cs │ ├── NavigationService.cs │ └── RestWebService.cs │ ├── TrackMyWalks.csproj │ ├── ValueConverters │ └── ImageConverter.cs │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── WalkDistancePageViewModel.cs │ ├── WalkEntryPageViewModel.cs │ ├── WalkTrailInfoPageViewModel.cs │ └── WalksMainPageViewModel.cs │ └── Views │ ├── CustomMapOverlay.cs │ ├── SplashPage.xaml │ ├── SplashPage.xaml.cs │ ├── WalkDistancePage.xaml │ ├── WalkDistancePage.xaml.cs │ ├── WalkEntryPage.xaml │ ├── WalkEntryPage.xaml.cs │ ├── WalkTrailInfoPage.xaml │ ├── WalkTrailInfoPage.xaml.cs │ ├── WalksMainPage.xaml │ └── WalksMainPage.xaml.cs ├── Chapter12 └── TrackMyWalks │ ├── TrackMyWalks.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── CustomEffects │ │ ├── ButtonShadowEffect.cs │ │ └── LabelShadowEffect.cs │ ├── CustomRenderers │ │ ├── CustomMapRenderer.cs │ │ └── TwitterSignInPageRenderer.cs │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.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 │ └── TrackMyWalks.Android.csproj │ ├── TrackMyWalks.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 │ ├── CustomEffects │ │ ├── ButtonShadowEffect.cs │ │ └── LabelShadowEffect.cs │ ├── CustomRenderers │ │ ├── CustomMapRenderer.cs │ │ └── TwitterSignInPageRenderer.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Info.plist.bak.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 │ └── TrackMyWalks.iOS.csproj │ ├── TrackMyWalks.sln │ └── TrackMyWalks │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomEffects │ ├── ButtonShadowEffect.cs │ └── LabelShadowEffect.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── WalkDataModel.cs │ ├── Services │ ├── ILocationService.cs │ ├── INavigationService.cs │ ├── IRestWebService.cs │ ├── ITwitterWebService.cs │ ├── LocationService.cs │ ├── NavigationService.cs │ ├── RestWebService.cs │ ├── TwitterAuthDetails.cs │ └── TwitterWebService.cs │ ├── TrackMyWalks.csproj │ ├── ValueConverters │ └── ImageConverter.cs │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── TwitterSignInPageViewModel.cs │ ├── WalkDistancePageViewModel.cs │ ├── WalkEntryPageViewModel.cs │ ├── WalkTrailInfoPageViewModel.cs │ └── WalksMainPageViewModel.cs │ └── Views │ ├── CustomMapOverlay.cs │ ├── SplashPage.xaml │ ├── SplashPage.xaml.cs │ ├── TwitterSignInPage.xaml │ ├── TwitterSignInPage.xaml.cs │ ├── WalkDistancePage.xaml │ ├── WalkDistancePage.xaml.cs │ ├── WalkEntryPage.xaml │ ├── WalkEntryPage.xaml.cs │ ├── WalkTrailInfoPage.xaml │ ├── WalkTrailInfoPage.xaml.cs │ ├── WalksMainPage.xaml │ └── WalksMainPage.xaml.cs ├── Chapter13 └── TrackMyWalks │ ├── TrackMyWalks.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── CustomEffects │ │ ├── ButtonShadowEffect.cs │ │ └── LabelShadowEffect.cs │ ├── CustomRenderers │ │ ├── CustomMapRenderer.cs │ │ └── TwitterSignInPageRenderer.cs │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.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 │ └── TrackMyWalks.Android.csproj │ ├── TrackMyWalks.UITests │ ├── AppInitializer.cs │ ├── CreateNewTrailDetails.cs │ ├── Tests.cs │ ├── TrackMyWalks.UITests.csproj │ └── packages.config │ ├── TrackMyWalks.UnitTests │ ├── TrackMyWalks.UnitTests.csproj │ ├── UnitTest1.cs │ ├── WalkEntryPageViewModelTest.cs │ └── WalksMainPageViewModelTest.cs │ ├── TrackMyWalks.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 │ ├── CustomRenderers │ │ ├── CustomMapRenderer.cs │ │ └── TwitterSignInPageRenderer.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ │ ├── Default-Portrait.png │ │ └── Default.png │ └── TrackMyWalks.iOS.csproj │ ├── TrackMyWalks.sln │ └── TrackMyWalks │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomEffects │ ├── ButtonShadowEffect.cs │ └── LabelShadowEffect.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── WalkDataModel.cs │ ├── Services │ ├── ILocationService.cs │ ├── INavigationService.cs │ ├── IRestWebService.cs │ ├── ITwitterWebService.cs │ ├── LocationService.cs │ ├── NavigationService.cs │ ├── RestWebService.cs │ ├── TwitterAuthDetails.cs │ └── TwitterWebService.cs │ ├── TrackMyWalks.csproj │ ├── ValueConverters │ └── ImageConverter.cs │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── TwitterSignInPageViewModel.cs │ ├── WalkDistancePageViewModel.cs │ ├── WalkEntryPageViewModel.cs │ ├── WalkTrailInfoPageViewModel.cs │ └── WalksMainPageViewModel.cs │ └── Views │ ├── CustomMapOverlay.cs │ ├── SplashPage.xaml │ ├── SplashPage.xaml.cs │ ├── TwitterSignInPage.xaml │ ├── TwitterSignInPage.xaml.cs │ ├── WalkDistancePage.xaml │ ├── WalkDistancePage.xaml.cs │ ├── WalkEntryPage.xaml │ ├── WalkEntryPage.xaml.cs │ ├── WalkTrailInfoPage.xaml │ ├── WalkTrailInfoPage.xaml.cs │ ├── WalksMainPage.xaml │ └── WalksMainPage.xaml.cs ├── LICENSE └── README.md /Chapter01/PlanetaryApp/Chapter02/PhotoLibrary/PhotoLibrary/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/Chapter02/PhotoLibrary/PhotoLibrary/MainActivity.cs -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/Chapter02/PhotoLibrary/PhotoLibrary/PhotoLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/Chapter02/PhotoLibrary/PhotoLibrary/PhotoLibrary.sln -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/Chapter02/PhotoLibrary/PhotoLibrary/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/Chapter02/PhotoLibrary/PhotoLibrary/packages.config -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/PlanetaryApp.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/PlanetaryApp.Android.csproj -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/PlanetaryApp.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/PlanetaryApp.iOS.csproj -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp.sln -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp/App.xaml -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp/App.xaml.cs -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp/MainPage.xaml -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter01/PlanetaryApp/PlanetaryApp/PlanetaryApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter01/PlanetaryApp/PlanetaryApp/PlanetaryApp.csproj -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/MainActivity.cs -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/PhotoLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/PhotoLibrary.csproj -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/PhotoLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/PhotoLibrary.sln -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/PhotoLibraryActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/PhotoLibraryActivity.cs -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/layout/Main.axml -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/layout/PhotoLibraryUI.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/layout/PhotoLibraryUI.axml -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter02/PhotoLibrary/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter02/PhotoLibrary/packages.config -------------------------------------------------------------------------------- /Chapter03/Assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/Assets.zip -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles.sln -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/Classes/GameTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/Classes/GameTile.cs -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/Entitlements.plist -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/Info.plist -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/Interfaces/IGameTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/Interfaces/IGameTile.cs -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/Main copy.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/Main copy.storyboard -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/Main.cs -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/Main.storyboard -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/Resources/game_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/Resources/game_tile.png -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/SlidingTiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/SlidingTiles.csproj -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/ViewController.cs -------------------------------------------------------------------------------- /Chapter03/SlidingTiles/SlidingTiles/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter03/SlidingTiles/SlidingTiles/ViewController.designer.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks.sln -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/App.xaml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/MainPage.xaml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml -------------------------------------------------------------------------------- /Chapter04/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter04/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks.sln -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/App.xaml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/MainPage.xaml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml -------------------------------------------------------------------------------- /Chapter05/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter05/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks.sln -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/App.xaml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/MainPage.xaml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml -------------------------------------------------------------------------------- /Chapter06/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter06/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks.sln -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/App.xaml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/MainPage.xaml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Services/LocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Services/LocationService.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml -------------------------------------------------------------------------------- /Chapter07/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter07/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/ButtonShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/ButtonShadowEffect.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks.sln -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/App.xaml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/MainPage.xaml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Services/LocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Services/LocationService.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml -------------------------------------------------------------------------------- /Chapter08/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter08/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/ButtonShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/ButtonShadowEffect.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks.sln -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/App.xaml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/MainPage.xaml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Services/LocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Services/LocationService.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml -------------------------------------------------------------------------------- /Chapter09/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter09/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter10/BookLibrary.Droid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter10/BookLibrary.Droid.zip -------------------------------------------------------------------------------- /Chapter10/BookLibrary.iOS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter10/BookLibrary.iOS.zip -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/ButtonShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/ButtonShadowEffect.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks.sln -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/App.xaml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/MainPage.xaml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Services/IRestWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Services/IRestWebService.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Services/LocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Services/LocationService.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Services/RestWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Services/RestWebService.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/WalkDistancePageViewModel.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/WalkTrailInfoPageViewModel.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml -------------------------------------------------------------------------------- /Chapter11/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter11/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/ButtonShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/ButtonShadowEffect.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/CustomEffects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/CustomRenderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Info.plist.bak.plist -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks.sln -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/App.xaml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/MainPage.xaml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Services/IRestWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Services/IRestWebService.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Services/ITwitterWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Services/ITwitterWebService.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Services/LocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Services/LocationService.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Services/RestWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Services/RestWebService.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Services/TwitterAuthDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Services/TwitterAuthDetails.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Services/TwitterWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Services/TwitterWebService.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/ViewModels/TwitterSignInPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/ViewModels/TwitterSignInPageViewModel.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/TwitterSignInPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/TwitterSignInPage.xaml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/TwitterSignInPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/TwitterSignInPage.xaml.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml -------------------------------------------------------------------------------- /Chapter12/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter12/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.Android/TrackMyWalks.Android.csproj -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.UITests/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.UITests/AppInitializer.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.UITests/CreateNewTrailDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.UITests/CreateNewTrailDetails.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.UITests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.UITests/Tests.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.UITests/TrackMyWalks.UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.UITests/TrackMyWalks.UITests.csproj -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.UITests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.UITests/packages.config -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.UnitTests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.UnitTests/UnitTest1.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.iOS/TrackMyWalks.iOS.csproj -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks.sln -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/App.xaml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/CustomEffects/ButtonShadowEffect.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/CustomEffects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/MainPage.xaml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Models/WalkDataModel.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Services/ILocationService.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Services/INavigationService.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Services/IRestWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Services/IRestWebService.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Services/ITwitterWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Services/ITwitterWebService.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Services/LocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Services/LocationService.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Services/NavigationService.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Services/RestWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Services/RestWebService.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Services/TwitterAuthDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Services/TwitterAuthDetails.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Services/TwitterWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Services/TwitterWebService.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/TrackMyWalks.csproj -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/ValueConverters/ImageConverter.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/ViewModels/WalkEntryPageViewModel.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/ViewModels/WalksMainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/CustomMapOverlay.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/SplashPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/TwitterSignInPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/TwitterSignInPage.xaml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/TwitterSignInPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/TwitterSignInPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkDistancePage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkEntryPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/WalkTrailInfoPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml -------------------------------------------------------------------------------- /Chapter13/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/Chapter13/TrackMyWalks/TrackMyWalks/Views/WalksMainPage.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Xamarin-UI-Development-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------