├── Chapter 1 ├── .gitignore ├── Gallery.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── Bitmap │ │ └── BitmapHelpers.cs │ ├── Gallery.Droid.csproj │ ├── ImageHandler.cs │ ├── ListAdapter.cs │ ├── MainActivity.cs │ ├── PhotoActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── CustomCell.xml │ │ │ ├── Main.axml │ │ │ └── Photo.xml │ │ └── values │ │ │ └── Strings.xml │ └── packages.config ├── Gallery.Shared │ ├── Gallery.Shared.projitems │ ├── Gallery.Shared.shproj │ └── GalleryItem.cs ├── Gallery.sln └── Gallery.userprefs ├── Chapter 2 ├── .gitignore ├── App.cs ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Modules │ │ └── DroidModule.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ └── drawable │ │ │ └── icon.png │ ├── Services │ │ └── TextToSpeech.cs │ ├── SpeechTalk.Droid.csproj │ └── packages.config ├── IoC │ ├── IModule.cs │ └── IoC.cs ├── Modules │ └── PCLModule.cs ├── Pages │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ └── ITextToSpeech.cs ├── SpeechTalk.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── BadgeLogo.scale-100.png │ │ ├── BadgeLogo.scale-140.png │ │ ├── BadgeLogo.scale-240.png │ │ ├── Logo.scale-100.png │ │ ├── Logo.scale-140.png │ │ ├── Logo.scale-240.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SmallLogo.scale-140.png │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-140.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-140.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-140.png │ │ ├── StoreLogo.scale-240.png │ │ ├── WideLogo.scale-100.png │ │ ├── WideLogo.scale-140.png │ │ └── WideLogo.scale-240.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Modules │ │ └── WinPhoneModule.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Services │ │ └── TextToSpeechWinPhone.cs │ ├── SpeechTalk.WinPhone.csproj │ └── packages.config ├── SpeechTalk.csproj ├── SpeechTalk.sln ├── SpeechTalk.userprefs ├── SpeechTalk.v12.suo ├── UpgradeLog.htm ├── ViewModels │ ├── MainPageViewModel.cs │ └── ViewModelBase.cs ├── iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Modules │ │ └── iOSModule.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Flush App Icon - 114px.png │ │ │ │ ├── Flush App Icon - 120px.png │ │ │ │ ├── Flush App Icon - 144px.png │ │ │ │ ├── Flush App Icon - 152px.png │ │ │ │ ├── Flush App Icon - 167px.png │ │ │ │ ├── Flush App Icon - 180px.png │ │ │ │ └── Flush App Icon - 87px.png │ │ └── LaunchScreen.xib │ ├── Services │ │ └── TextToSpeech.cs │ ├── SpeechTalk.iOS.csproj │ └── packages.config └── packages.config ├── Chapter 3 ├── .gitignore ├── App.cs ├── Backup │ └── MapsTest.win81 │ │ ├── MapsTest.win81.csproj │ │ └── Package.appxmanifest ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── Extras │ │ └── DroidMethods.cs │ ├── Location │ │ └── GeolocatorDroid.cs │ ├── Locator.Droid.csproj │ ├── MainActivity.cs │ ├── Modules │ │ └── DroidModule.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ └── drawable │ │ │ ├── icon.png │ │ │ └── map.png │ └── packages.config ├── Locator.Portable │ ├── Enums │ │ └── PageNames.cs │ ├── Extras │ │ └── IMethods.cs │ ├── IoC │ │ ├── IModule.cs │ │ └── IoC.cs │ ├── Location │ │ ├── IGeolocator.cs │ │ ├── IPosition.cs │ │ └── Position.cs │ ├── Locator.Portable.csproj │ ├── Modules │ │ └── PortableModule.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ApiConfig.Designer.cs │ │ ├── ApiConfig.resx │ │ └── Config.Designer.cs │ ├── UI │ │ └── INavigationService.cs │ ├── ViewModels │ │ ├── MainPageViewModel.cs │ │ ├── MapPageViewModel.cs │ │ └── ViewModelBase.cs │ ├── WebServices │ │ └── GeocodingWebServiceController │ │ │ ├── Contracts │ │ │ ├── AddressComponentContract.cs │ │ │ ├── GeocodingContract.cs │ │ │ ├── GeocodingResultContract.cs │ │ │ ├── GeometryContract.cs │ │ │ ├── LocationContract.cs │ │ │ ├── NortheastContract.cs │ │ │ ├── SouthwestContract.cs │ │ │ └── ViewportContract.cs │ │ │ ├── GeocodingWebServiceController.cs │ │ │ └── IGeocodingWebServiceController.cs │ └── packages.config ├── Locator.Shared │ ├── Locator.Shared.projitems │ ├── Locator.Shared.shproj │ └── Modules │ │ └── SharedModule.cs ├── Locator.WinRT │ └── Locator.WinRT.WindowsPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── BadgeLogo.scale-100.png │ │ ├── BadgeLogo.scale-140.png │ │ ├── BadgeLogo.scale-240.png │ │ ├── Logo.scale-100.png │ │ ├── Logo.scale-140.png │ │ ├── Logo.scale-240.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SmallLogo.scale-140.png │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-140.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-140.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-140.png │ │ ├── StoreLogo.scale-240.png │ │ ├── WideLogo.scale-100.png │ │ ├── WideLogo.scale-140.png │ │ └── WideLogo.scale-240.png │ │ ├── Extras │ │ └── WinPhoneMethods.cs │ │ ├── Location │ │ └── GeolocatorWinPhone.cs │ │ ├── Locator.WinRT.WindowsPhone.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Modules │ │ └── WinPhoneModule.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ ├── map.png │ │ └── packages.config ├── Locator.csproj ├── Locator.sln ├── Locator.userprefs ├── Locator.v12.suo ├── Modules │ └── XamFormsModule.cs ├── Pages │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MapPage.xaml │ └── MapPage.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── UI │ ├── INavigableXamarinFormsPage.cs │ ├── NavigationService.cs │ └── XamarinNavigationExtensions.cs ├── UpgradeLog.htm ├── iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Extras │ │ └── IOSMethods.cs │ ├── Info.plist │ ├── Location │ │ └── GeolocatorIOS.cs │ ├── Locator.iOS.csproj │ ├── Main.cs │ ├── Modules │ │ └── iOSModule.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Flush App Icon - 114px.png │ │ │ │ ├── Flush App Icon - 120px.png │ │ │ │ ├── Flush App Icon - 144px.png │ │ │ │ ├── Flush App Icon - 152px.png │ │ │ │ ├── Flush App Icon - 167px.png │ │ │ │ ├── Flush App Icon - 180px.png │ │ │ │ └── Flush App Icon - 87px.png │ │ ├── LaunchScreen.xib │ │ └── map.png │ └── packages.config └── packages.config ├── Chapter 4 ├── .gitignore ├── App.cs ├── AudioPlayer.Droid │ ├── Assets │ │ ├── AboutAssets.txt │ │ └── Moby - The Only Thing.mp3 │ ├── AudioPlayer.Droid.csproj │ ├── Controls │ │ └── CustomSeekBar.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ ├── audio.png │ │ │ ├── fast_forward.png │ │ │ ├── icon.png │ │ │ ├── moby.png │ │ │ ├── next.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── previous.png │ │ │ ├── repeat.png │ │ │ ├── rewind.png │ │ │ ├── schuffle.png │ │ │ ├── splash.png │ │ │ └── stop.png │ │ ├── layout │ │ │ ├── AudioPlayerPage.xml │ │ │ ├── MainPage.xml │ │ │ └── SplashScreen.axml │ │ └── values │ │ │ ├── SplashStyle.xml │ │ │ └── Strings.xml │ ├── Setup.cs │ ├── Sound │ │ └── SoundHandler.cs │ ├── SplashScreenActivity.cs │ ├── Views │ │ ├── AudioPlayerPage.cs │ │ └── MainPage.cs │ └── packages.config ├── AudioPlayer.Portable.csproj ├── AudioPlayer.iOS │ ├── AppDelegate.cs │ ├── AudioPlayer.iOS.csproj │ ├── Entitlements.plist │ ├── Extras │ │ └── DictionaryViews.cs │ ├── Info.plist │ ├── IosSetup.cs │ ├── Main.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Flush App Icon - 114px.png │ │ │ │ ├── Flush App Icon - 120px.png │ │ │ │ ├── Flush App Icon - 144px.png │ │ │ │ ├── Flush App Icon - 152px.png │ │ │ │ ├── Flush App Icon - 167px.png │ │ │ │ ├── Flush App Icon - 180px.png │ │ │ │ └── Flush App Icon - 87px.png │ │ ├── LaunchScreen.xib │ │ ├── Moby - The Only Thing.mp3 │ │ ├── audio.png │ │ ├── fast_forward.png │ │ ├── moby.png │ │ ├── next.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── previous.png │ │ ├── repeat.png │ │ ├── rewind.png │ │ ├── schuffle.png │ │ └── stop.png │ ├── Sound │ │ └── SoundHandler.cs │ ├── Views │ │ ├── AudioPlayerPage.cs │ │ └── MainPage.cs │ └── packages.config ├── AudioPlayer.sln ├── AudioPlayer.userprefs ├── IoC │ └── PortableMvxIoCRegistrations.cs ├── Logging │ └── DebugTrace.cs ├── Properties │ └── AssemblyInfo.cs ├── Sound │ └── ISoundHandler.cs ├── ViewModels │ ├── AudioPlayerPageViewModel.cs │ └── MainPageViewModel.cs └── packages.config ├── Chapter 5 ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── Controls │ └── CustomLabel.cs ├── Converters │ └── NotConverter.cs ├── Droid │ ├── Assets │ │ ├── AboutAssets.txt │ │ └── GraCoRg_.ttf │ ├── Extras │ │ └── DroidMethods.cs │ ├── MainActivity.cs │ ├── Modules │ │ └── DroidModule.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ └── CustomLabelRenderer.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ ├── icon.png │ │ │ └── stocklist.png │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ └── values │ │ │ └── styles.xml │ ├── Stocklist.Droid.csproj │ └── packages.config ├── Modules │ └── XamFormsModule.cs ├── Pages │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── StockItemDetailsPage.xaml │ ├── StockItemDetailsPage.xaml.cs │ ├── StocklistPage.xaml │ └── StocklistPage.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── Stocklist.Portable │ ├── Enums │ │ └── PageNames.cs │ ├── Extras │ │ └── IMethods.cs │ ├── IoC │ │ ├── IModule.cs │ │ └── IoC.cs │ ├── Modules │ │ └── PortableModule.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Config.Designer.cs │ │ ├── Config.resx │ │ ├── LabelResources.Designer.cs │ │ ├── LabelResources.resx │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Stocklist.Portable.csproj │ ├── UI │ │ └── INavigationService.cs │ ├── ViewModels │ │ ├── MainPageViewModel.cs │ │ ├── StockItemDetailsPageViewModel.cs │ │ ├── StockItemViewModel.cs │ │ ├── StocklistPageViewModel.cs │ │ └── ViewModelBase.cs │ ├── WebServices │ │ └── StocklistWebServiceController │ │ │ ├── Contracts │ │ │ └── StockItemContract.cs │ │ │ ├── IStocklistWebServiceController.cs │ │ │ └── StocklistWebServiceController.cs │ └── packages.config ├── Stocklist.Shared │ ├── Modules │ │ └── SharedModule.cs │ ├── Stocklist.Shared.projitems │ └── Stocklist.Shared.shproj ├── Stocklist.Winphone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── BadgeLogo.scale-100.png │ │ ├── BadgeLogo.scale-140.png │ │ ├── BadgeLogo.scale-240.png │ │ ├── Logo.scale-100.png │ │ ├── Logo.scale-140.png │ │ ├── Logo.scale-240.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SmallLogo.scale-140.png │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-140.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-140.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-140.png │ │ ├── StoreLogo.scale-240.png │ │ ├── WideLogo.scale-100.png │ │ ├── WideLogo.scale-140.png │ │ └── WideLogo.scale-240.png │ ├── Extras │ │ └── WinphoneMethods.cs │ ├── GraCoRg_.ttf │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Modules │ │ └── WinphoneModule.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Stocklist.Winphone.csproj │ ├── app.config │ ├── packages.config │ └── stocklist.png ├── Stocklist.XamForms.csproj ├── Stocklist.cs ├── Stocklist.sln ├── Stocklist.userprefs ├── Stocklist.v12.suo ├── Stocklist │ ├── Droid │ │ └── packages.config │ └── Stocklist.userprefs ├── UI │ ├── INavigableXamarinFormsPage.cs │ ├── NavigationService.cs │ └── XamarinNavigationExtensions.cs ├── UpgradeLog.htm ├── iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ ├── AppIcons.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Entitlements.plist │ ├── Extras │ │ └── IOSMethods.cs │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Modules │ │ └── iOSModule.cs │ ├── Resources │ │ ├── GraCoRg_.ttf │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Flush App Icon - 114px.png │ │ │ │ ├── Flush App Icon - 120px.png │ │ │ │ ├── Flush App Icon - 144px.png │ │ │ │ ├── Flush App Icon - 152px.png │ │ │ │ ├── Flush App Icon - 167px.png │ │ │ │ ├── Flush App Icon - 180px.png │ │ │ │ └── Flush App Icon - 87px.png │ │ └── stocklist.png │ ├── Stocklist.iOS.csproj │ └── packages.config └── packages.config ├── Chapter 6 ├── .gitignore ├── App.cs ├── Chat.Common │ ├── Chat.Common.projitems │ ├── Chat.Common.shproj │ ├── Events │ │ ├── ChatEventArgs.cs │ │ ├── ClientSelectedEventArgs.cs │ │ └── ConnectedClientsUpdatedEventArgs.cs │ ├── Model │ │ └── Client.cs │ └── Presenter │ │ ├── BasePresenter.cs │ │ ├── ChatPresenter.cs │ │ ├── ClientsListPresenter.cs │ │ ├── IView.cs │ │ ├── LoginPresenter.cs │ │ └── Services │ │ ├── ApplicationState.cs │ │ └── INavigationService.cs ├── Chat.Droid │ ├── Application.cs │ ├── Assets │ │ └── AboutAssets.txt │ ├── Chat.Droid.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ ├── icon.png │ │ │ └── splash.png │ │ ├── layout │ │ │ ├── ChatBoxView.xml │ │ │ ├── ChatView.xml │ │ │ ├── CustomCell.xml │ │ │ └── LoginView.xml │ │ └── values │ │ │ ├── SplashStyle.xml │ │ │ └── Strings.xml │ ├── Services │ │ └── NavigationService.cs │ ├── SplashScreenActivity.cs │ ├── Views │ │ ├── ChatActivity.cs │ │ ├── ClientsListActivity.cs │ │ ├── ClientsListAdapter.cs │ │ └── LoginActivity.cs │ └── packages.config ├── Chat.Portable.csproj ├── Chat.ServiceAccess │ ├── Chat.ServiceAccess.projitems │ ├── Chat.ServiceAccess.shproj │ ├── SignalR │ │ └── SignalRClient.cs │ └── Web │ │ ├── Contracts │ │ └── TokenContract.cs │ │ └── WebApiAccess.cs ├── Chat.iOS │ ├── AppDelegate.cs │ ├── Chat.iOS.csproj │ ├── ClientsTableSource.cs │ ├── Entitlements.plist │ ├── Extensions │ │ └── ColorExtensions.cs │ ├── Extras │ │ └── DictionaryViews.cs │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Flush App Icon - 114px.png │ │ │ │ ├── Flush App Icon - 120px.png │ │ │ │ ├── Flush App Icon - 144px.png │ │ │ │ ├── Flush App Icon - 152px.png │ │ │ │ ├── Flush App Icon - 167px.png │ │ │ │ ├── Flush App Icon - 180px.png │ │ │ │ └── Flush App Icon - 87px.png │ │ └── LaunchScreen.xib │ ├── Services │ │ └── NavigationService.cs │ ├── Views │ │ ├── ChatBoxView.cs │ │ ├── ChatViewController.cs │ │ ├── ClientsListViewController.cs │ │ └── LoginViewController.cs │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config ├── Chat.sln ├── Chat.userprefs ├── IoC │ └── PortableMvxIoCRegistrations.cs ├── Logging │ └── DebugTrace.cs ├── Properties │ └── AssemblyInfo.cs ├── Sound │ └── ISoundHandler.cs ├── ViewModels │ ├── AudioPlayerPageViewModel.cs │ └── MainPageViewModel.cs ├── packages.config └── sigr │ ├── android │ ├── Microsoft.AspNet.SignalR.Client.dll │ ├── Microsoft.AspNet.SignalR.Client.xml │ ├── Newtonsoft.Json.dll │ ├── System.Net.Http.Extensions.dll │ └── System.Net.Http.Primitives.dll │ ├── ios-unified │ ├── Microsoft.AspNet.SignalR.Client.dll │ ├── Microsoft.AspNet.SignalR.Client.xml │ ├── Newtonsoft.Json.dll │ ├── System.Net.Http.Extensions.dll │ └── System.Net.Http.Primitives.dll │ └── wp8 │ ├── Microsoft.AspNet.SignalR.Client.dll │ └── Microsoft.AspNet.SignalR.Client.xml ├── Chapter 7 ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── Backup │ └── MapsTest.win81 │ │ ├── MapsTest.win81.csproj │ │ └── Package.appxmanifest ├── Behaviours │ └── LowercaseEntryBehaviour.cs ├── Controls │ ├── CarouselLayout.cs │ ├── CarouselScroll.cs │ ├── CarouselView.xaml │ ├── CarouselView.xaml.cs │ └── GestureView.cs ├── Converters │ └── NotConverter.cs ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── DataAccess │ │ └── SQLiteSetup.cs │ ├── Extras │ │ └── DroidMethods.cs │ ├── FileStorage.Droid.csproj │ ├── Logging │ │ └── LoggerDroid.cs │ ├── MainActivity.cs │ ├── Modules │ │ └── DroidModule.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ └── GestureView │ │ │ ├── GestureListener.cs │ │ │ └── GestureViewRenderer.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ ├── file.png │ │ │ ├── files.png │ │ │ └── icon.png │ │ └── layout │ │ │ └── EntryAlertView.xml │ └── packages.config ├── FileStorage.Portable │ ├── DataAccess │ │ ├── Storable │ │ │ ├── FileStorable.cs │ │ │ ├── IStorable.cs │ │ │ └── StorableExtensions.cs │ │ └── Storage │ │ │ ├── ISQLiteSetup.cs │ │ │ ├── ISQLiteStorage.cs │ │ │ └── SQLiteStorage.cs │ ├── Enums │ │ └── PageNames.cs │ ├── Extras │ │ └── IMethods.cs │ ├── FileStorage.Portable.csproj │ ├── IoC │ │ ├── IModule.cs │ │ └── IoC.cs │ ├── Logging │ │ └── ILogger.cs │ ├── Modules │ │ └── PortableModule.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ApiConfig.Designer.cs │ │ ├── ApiConfig.resx │ │ ├── Config.Designer.cs │ │ ├── LabelResources.Designer.cs │ │ └── LabelResources.resx │ ├── Threading │ │ ├── AsyncLock.cs │ │ └── AsyncSemaphore.cs │ ├── UI │ │ ├── DataChange.cs │ │ ├── INavigationService.cs │ │ └── ScrollChange.cs │ ├── ViewModels │ │ ├── EditFilePageViewModel.cs │ │ ├── FileItemViewModel.cs │ │ ├── FilesPageViewModel.cs │ │ ├── MainPageViewModel.cs │ │ └── ViewModelBase.cs │ └── packages.config ├── FileStorage.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Logo.scale-240.png │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-240.png │ │ └── WideLogo.scale-240.png │ ├── FileStorage.WinPhone.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Modules │ │ └── WinPhoneModule.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Services │ │ └── TextToSpeechWinPhone.cs │ ├── files.png │ └── packages.config ├── FileStorage.csproj ├── FileStorage.sln ├── FileStorage.userprefs ├── FileStorage.v12.suo ├── Modules │ └── XamFormsModule.cs ├── Pages │ ├── EditFilePage.xaml │ ├── EditFilePage.xaml.cs │ ├── FilesPage.xaml │ ├── FilesPage.xaml.cs │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── UI │ ├── ExtendedContentPage.cs │ ├── INavigableXamarinFormsPage.cs │ ├── NavigationService.cs │ └── XamarinNavigationExtensions.cs ├── UpgradeLog.htm ├── iOS │ ├── AppDelegate.cs │ ├── DataAccess │ │ └── SQLiteSetup.cs │ ├── Entitlements.plist │ ├── Extras │ │ └── IOSMethods.cs │ ├── FileStorage.iOS.csproj │ ├── Info.plist │ ├── Logging │ │ └── LoggeriOS.cs │ ├── Main.cs │ ├── Modules │ │ └── iOSModule.cs │ ├── Renderers │ │ └── GestureView │ │ │ ├── GestureViewRenderer.cs │ │ │ └── GestureViewiOS.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Flush App Icon - 114px.png │ │ │ │ ├── Flush App Icon - 120px.png │ │ │ │ ├── Flush App Icon - 144px.png │ │ │ │ ├── Flush App Icon - 152px.png │ │ │ │ ├── Flush App Icon - 167px.png │ │ │ │ ├── Flush App Icon - 180px.png │ │ │ │ └── Flush App Icon - 87px.png │ │ ├── LaunchScreen.xib │ │ ├── file.png │ │ └── files.png │ └── packages.config └── packages.config ├── Chapter 8 ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── Backup │ └── MapsTest.win81 │ │ ├── MapsTest.win81.csproj │ │ └── Package.appxmanifest ├── Camera.Portable │ ├── Camera.Portable.csproj │ ├── Enums │ │ ├── Orientation.cs │ │ └── PageNames.cs │ ├── Extras │ │ └── IMethods.cs │ ├── IoC │ │ ├── IModule.cs │ │ └── IoC.cs │ ├── Logging │ │ └── ILogger.cs │ ├── Modules │ │ └── PortableModule.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Config.Designer.cs │ │ ├── LabelResources.Designer.cs │ │ └── LabelResources.resx │ ├── UI │ │ ├── AlertArgs.cs │ │ └── INavigationService.cs │ ├── ViewModels │ │ ├── CameraPageViewModel.cs │ │ ├── MainPageViewModel.cs │ │ └── ViewModelBase.cs │ └── packages.config ├── Camera.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Logo.scale-240.png │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-240.png │ │ └── WideLogo.scale-240.png │ ├── Camera.WinPhone.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Modules │ │ └── WinPhoneModule.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Services │ │ └── TextToSpeechWinPhone.cs │ ├── files.png │ └── packages.config ├── Camera.csproj ├── Camera.sln ├── Camera.userprefs ├── Camera.v12.suo ├── Controls │ ├── CameraView.cs │ ├── CustomImage.cs │ ├── FocusView.cs │ ├── LoadingView.xaml │ ├── LoadingView.xaml.cs │ └── OrientationPage.cs ├── Converters │ ├── .#ByteArrayToImageSourceConverter.cs │ ├── .#NotConverter.cs │ ├── BoolToPartialConverter.cs │ ├── BoolToStringConverter.cs │ ├── ByteArrayToImageSourceConverter.cs │ ├── NotConverter.cs │ ├── OrientationToBoolConverter.cs │ ├── OrientationToDoubleConverter.cs │ └── OrientationToIntConverter.cs ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── Camera.Droid.csproj │ ├── Camera.Droid.sln │ ├── Camera.Droid.userprefs │ ├── Effects │ │ └── LabelShadowEffectDroid.cs │ ├── Extras │ │ └── DroidMethods.cs │ ├── Logging │ │ └── LoggerDroid.cs │ ├── MainActivity.cs │ ├── Modules │ │ └── DroidModule.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ ├── CameraView │ │ │ ├── AutoFitTextureView.cs │ │ │ ├── CameraCaptureListener.cs │ │ │ ├── CameraCaptureStateListener.cs │ │ │ ├── CameraDroid.cs │ │ │ ├── CameraStateListener.cs │ │ │ ├── CameraViewRenderer.cs │ │ │ └── ImageAvailableListener.cs │ │ ├── CustomImage │ │ │ └── CustomImageRenderer.cs │ │ └── FocusView │ │ │ ├── FocusViewGestureDetector.cs │ │ │ └── FocusViewRenderer.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ ├── photo_camera_button.png │ │ │ ├── photo_focus.png │ │ │ ├── photo_light.png │ │ │ └── photo_trash.png │ │ ├── drawable │ │ │ ├── camera.png │ │ │ ├── icon.png │ │ │ ├── photo_camera_button.png │ │ │ ├── photo_focus.png │ │ │ ├── photo_light.png │ │ │ └── photo_trash.png │ │ └── layout │ │ │ ├── CameraLayout.xml │ │ │ └── EntryAlertView.xml │ └── packages.config ├── Effects │ └── LabelShadowEffect.cs ├── Modules │ └── XamFormsModule.cs ├── Pages │ ├── CameraPage.xaml │ ├── CameraPage.xaml.cs │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── Triggers │ ├── ButtonClickedTrigger.cs │ └── VisualElementPopTriggerAction.cs ├── UI │ ├── ExtendedContentPage.cs │ ├── INavigableXamarinFormsPage.cs │ ├── NavigationService.cs │ └── XamarinNavigationExtensions.cs ├── UpgradeLog.htm ├── iOS │ ├── AppDelegate.cs │ ├── Camera.iOS.csproj │ ├── Device │ │ └── Xamarin.iOS.DeviceHarware.cs │ ├── Effects │ │ └── LabelShadowEffectiOS.cs │ ├── Entitlements.plist │ ├── Extensions │ │ └── ColorExtensions.cs │ ├── Extras │ │ └── IOSMethods.cs │ ├── Helpers │ │ └── UIImageEffects.cs │ ├── Info.plist │ ├── Logging │ │ └── LoggeriOS.cs │ ├── Main.cs │ ├── Modules │ │ └── iOSModule.cs │ ├── Renderers │ │ ├── CameraView │ │ │ ├── CameraIOS.cs │ │ │ └── CameraViewRenderer.cs │ │ ├── CustomImage │ │ │ └── CustomImageRenderer.cs │ │ └── FocusView │ │ │ └── FocusViewRendererTouchAttribute.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Flush App Icon - 114px.png │ │ │ │ ├── Flush App Icon - 120px.png │ │ │ │ ├── Flush App Icon - 144px.png │ │ │ │ ├── Flush App Icon - 152px.png │ │ │ │ ├── Flush App Icon - 167px.png │ │ │ │ ├── Flush App Icon - 180px.png │ │ │ │ └── Flush App Icon - 87px.png │ │ ├── LaunchScreen.xib │ │ ├── camera.png │ │ ├── photo_camera_button.png │ │ ├── photo_camera_button@2x.png │ │ ├── photo_check.png │ │ ├── photo_check@2x.png │ │ ├── photo_focus.png │ │ ├── photo_focus@2x.png │ │ ├── photo_light.png │ │ ├── photo_light@2x.png │ │ ├── photo_trash.png │ │ └── photo_trash@2x.png │ └── packages.config └── packages.config ├── LICENSE └── README.md /Chapter 1/.gitignore: -------------------------------------------------------------------------------- 1 | uo 2 | *.user 3 | _ReSharper.* 4 | bin 5 | obj 6 | packages 7 | -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Bitmap/BitmapHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Bitmap/BitmapHelpers.cs -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Gallery.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Gallery.Droid.csproj -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/ImageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/ImageHandler.cs -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/ListAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/ListAdapter.cs -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/MainActivity.cs -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/PhotoActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/PhotoActivity.cs -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Resources/layout/CustomCell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Resources/layout/CustomCell.xml -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Resources/layout/Main.axml -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Resources/layout/Photo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Resources/layout/Photo.xml -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Chapter 1/Gallery.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Droid/packages.config -------------------------------------------------------------------------------- /Chapter 1/Gallery.Shared/Gallery.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Shared/Gallery.Shared.projitems -------------------------------------------------------------------------------- /Chapter 1/Gallery.Shared/Gallery.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Shared/Gallery.Shared.shproj -------------------------------------------------------------------------------- /Chapter 1/Gallery.Shared/GalleryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.Shared/GalleryItem.cs -------------------------------------------------------------------------------- /Chapter 1/Gallery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.sln -------------------------------------------------------------------------------- /Chapter 1/Gallery.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 1/Gallery.userprefs -------------------------------------------------------------------------------- /Chapter 2/.gitignore: -------------------------------------------------------------------------------- 1 | uo 2 | *.user 3 | _ReSharper.* 4 | bin 5 | obj 6 | packages 7 | -------------------------------------------------------------------------------- /Chapter 2/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/App.cs -------------------------------------------------------------------------------- /Chapter 2/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter 2/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/MainActivity.cs -------------------------------------------------------------------------------- /Chapter 2/Droid/Modules/DroidModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/Modules/DroidModule.cs -------------------------------------------------------------------------------- /Chapter 2/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter 2/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 2/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter 2/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter 2/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter 2/Droid/Services/TextToSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/Services/TextToSpeech.cs -------------------------------------------------------------------------------- /Chapter 2/Droid/SpeechTalk.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/SpeechTalk.Droid.csproj -------------------------------------------------------------------------------- /Chapter 2/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Droid/packages.config -------------------------------------------------------------------------------- /Chapter 2/IoC/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/IoC/IModule.cs -------------------------------------------------------------------------------- /Chapter 2/IoC/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/IoC/IoC.cs -------------------------------------------------------------------------------- /Chapter 2/Modules/PCLModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Modules/PCLModule.cs -------------------------------------------------------------------------------- /Chapter 2/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Pages/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 2/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 2/Services/ITextToSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/Services/ITextToSpeech.cs -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/App.xaml -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/BadgeLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/BadgeLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/BadgeLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/BadgeLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/Logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/Logo.scale-140.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/SmallLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/SmallLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/SplashScreen.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/SplashScreen.scale-140.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/Square71x71Logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/Square71x71Logo.scale-140.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/StoreLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/StoreLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/WideLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/WideLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Modules/WinPhoneModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Modules/WinPhoneModule.cs -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/Services/TextToSpeechWinPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/Services/TextToSpeechWinPhone.cs -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/SpeechTalk.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/SpeechTalk.WinPhone.csproj -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.WinPhone/packages.config -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.csproj -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.sln -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.userprefs -------------------------------------------------------------------------------- /Chapter 2/SpeechTalk.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/SpeechTalk.v12.suo -------------------------------------------------------------------------------- /Chapter 2/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/UpgradeLog.htm -------------------------------------------------------------------------------- /Chapter 2/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 2/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /Chapter 2/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter 2/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter 2/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter 2/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Main.cs -------------------------------------------------------------------------------- /Chapter 2/iOS/Modules/iOSModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Modules/iOSModule.cs -------------------------------------------------------------------------------- /Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png -------------------------------------------------------------------------------- /Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png -------------------------------------------------------------------------------- /Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png -------------------------------------------------------------------------------- /Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png -------------------------------------------------------------------------------- /Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png -------------------------------------------------------------------------------- /Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png -------------------------------------------------------------------------------- /Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 87px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 87px.png -------------------------------------------------------------------------------- /Chapter 2/iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter 2/iOS/Services/TextToSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/Services/TextToSpeech.cs -------------------------------------------------------------------------------- /Chapter 2/iOS/SpeechTalk.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/SpeechTalk.iOS.csproj -------------------------------------------------------------------------------- /Chapter 2/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/iOS/packages.config -------------------------------------------------------------------------------- /Chapter 2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 2/packages.config -------------------------------------------------------------------------------- /Chapter 3/.gitignore: -------------------------------------------------------------------------------- 1 | uo 2 | *.user 3 | _ReSharper.* 4 | bin 5 | obj 6 | packages 7 | -------------------------------------------------------------------------------- /Chapter 3/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/App.cs -------------------------------------------------------------------------------- /Chapter 3/Backup/MapsTest.win81/MapsTest.win81.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Backup/MapsTest.win81/MapsTest.win81.csproj -------------------------------------------------------------------------------- /Chapter 3/Backup/MapsTest.win81/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Backup/MapsTest.win81/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter 3/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter 3/Droid/Extras/DroidMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Extras/DroidMethods.cs -------------------------------------------------------------------------------- /Chapter 3/Droid/Location/GeolocatorDroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Location/GeolocatorDroid.cs -------------------------------------------------------------------------------- /Chapter 3/Droid/Locator.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Locator.Droid.csproj -------------------------------------------------------------------------------- /Chapter 3/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/MainActivity.cs -------------------------------------------------------------------------------- /Chapter 3/Droid/Modules/DroidModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Modules/DroidModule.cs -------------------------------------------------------------------------------- /Chapter 3/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter 3/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 3/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter 3/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter 3/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter 3/Droid/Resources/drawable/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/Resources/drawable/map.png -------------------------------------------------------------------------------- /Chapter 3/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Droid/packages.config -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Enums/PageNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Enums/PageNames.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Extras/IMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Extras/IMethods.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/IoC/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/IoC/IModule.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/IoC/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/IoC/IoC.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Location/IGeolocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Location/IGeolocator.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Location/IPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Location/IPosition.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Location/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Location/Position.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Locator.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Locator.Portable.csproj -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Modules/PortableModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Modules/PortableModule.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Resources/ApiConfig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Resources/ApiConfig.Designer.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Resources/ApiConfig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/Resources/ApiConfig.resx -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/Resources/Config.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/UI/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/UI/INavigationService.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/ViewModels/MapPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/ViewModels/MapPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.Portable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Portable/packages.config -------------------------------------------------------------------------------- /Chapter 3/Locator.Shared/Locator.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Shared/Locator.Shared.projitems -------------------------------------------------------------------------------- /Chapter 3/Locator.Shared/Locator.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Shared/Locator.Shared.shproj -------------------------------------------------------------------------------- /Chapter 3/Locator.Shared/Modules/SharedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.Shared/Modules/SharedModule.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/App.xaml -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/App.xaml.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/BadgeLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/BadgeLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/BadgeLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/BadgeLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/Logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/Logo.scale-140.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SmallLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SmallLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SplashScreen.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SplashScreen.scale-140.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/StoreLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/StoreLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/WideLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/WideLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Extras/WinPhoneMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Extras/WinPhoneMethods.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Location/GeolocatorWinPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Location/GeolocatorWinPhone.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Locator.WinRT.WindowsPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Locator.WinRT.WindowsPhone.csproj -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Modules/WinPhoneModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Modules/WinPhoneModule.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/app.config -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/map.png -------------------------------------------------------------------------------- /Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.WinRT/Locator.WinRT.WindowsPhone/packages.config -------------------------------------------------------------------------------- /Chapter 3/Locator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.csproj -------------------------------------------------------------------------------- /Chapter 3/Locator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.sln -------------------------------------------------------------------------------- /Chapter 3/Locator.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.userprefs -------------------------------------------------------------------------------- /Chapter 3/Locator.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Locator.v12.suo -------------------------------------------------------------------------------- /Chapter 3/Modules/XamFormsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Modules/XamFormsModule.cs -------------------------------------------------------------------------------- /Chapter 3/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Pages/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 3/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 3/Pages/MapPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Pages/MapPage.xaml -------------------------------------------------------------------------------- /Chapter 3/Pages/MapPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Pages/MapPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 3/UI/INavigableXamarinFormsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/UI/INavigableXamarinFormsPage.cs -------------------------------------------------------------------------------- /Chapter 3/UI/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/UI/NavigationService.cs -------------------------------------------------------------------------------- /Chapter 3/UI/XamarinNavigationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/UI/XamarinNavigationExtensions.cs -------------------------------------------------------------------------------- /Chapter 3/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/UpgradeLog.htm -------------------------------------------------------------------------------- /Chapter 3/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter 3/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter 3/iOS/Extras/IOSMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Extras/IOSMethods.cs -------------------------------------------------------------------------------- /Chapter 3/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter 3/iOS/Location/GeolocatorIOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Location/GeolocatorIOS.cs -------------------------------------------------------------------------------- /Chapter 3/iOS/Locator.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Locator.iOS.csproj -------------------------------------------------------------------------------- /Chapter 3/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Main.cs -------------------------------------------------------------------------------- /Chapter 3/iOS/Modules/iOSModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Modules/iOSModule.cs -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 87px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 87px.png -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter 3/iOS/Resources/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/Resources/map.png -------------------------------------------------------------------------------- /Chapter 3/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/iOS/packages.config -------------------------------------------------------------------------------- /Chapter 3/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 3/packages.config -------------------------------------------------------------------------------- /Chapter 4/.gitignore: -------------------------------------------------------------------------------- 1 | uo 2 | *.user 3 | _ReSharper.* 4 | bin 5 | obj 6 | packages 7 | -------------------------------------------------------------------------------- /Chapter 4/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/App.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Assets/Moby - The Only Thing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Assets/Moby - The Only Thing.mp3 -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/AudioPlayer.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/AudioPlayer.Droid.csproj -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Controls/CustomSeekBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Controls/CustomSeekBar.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/audio.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/fast_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/fast_forward.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/moby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/moby.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/next.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/pause.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/play.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/previous.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/repeat.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/rewind.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/schuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/schuffle.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/splash.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/drawable/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/drawable/stop.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/layout/AudioPlayerPage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/layout/AudioPlayerPage.xml -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/layout/MainPage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/layout/MainPage.xml -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/layout/SplashScreen.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/layout/SplashScreen.axml -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/values/SplashStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/values/SplashStyle.xml -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Setup.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Sound/SoundHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Sound/SoundHandler.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/SplashScreenActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/SplashScreenActivity.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Views/AudioPlayerPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Views/AudioPlayerPage.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/Views/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/Views/MainPage.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Droid/packages.config -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.Portable.csproj -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/AudioPlayer.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/AudioPlayer.iOS.csproj -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Extras/DictionaryViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Extras/DictionaryViews.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/IosSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/IosSetup.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/Moby - The Only Thing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/Moby - The Only Thing.mp3 -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/audio.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/fast_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/fast_forward.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/moby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/moby.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/next.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/pause.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/play.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/previous.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/repeat.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/rewind.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/schuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/schuffle.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Resources/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Resources/stop.png -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Sound/SoundHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Sound/SoundHandler.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Views/AudioPlayerPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Views/AudioPlayerPage.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/Views/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/Views/MainPage.cs -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.iOS/packages.config -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.sln -------------------------------------------------------------------------------- /Chapter 4/AudioPlayer.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/AudioPlayer.userprefs -------------------------------------------------------------------------------- /Chapter 4/IoC/PortableMvxIoCRegistrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/IoC/PortableMvxIoCRegistrations.cs -------------------------------------------------------------------------------- /Chapter 4/Logging/DebugTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/Logging/DebugTrace.cs -------------------------------------------------------------------------------- /Chapter 4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 4/Sound/ISoundHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/Sound/ISoundHandler.cs -------------------------------------------------------------------------------- /Chapter 4/ViewModels/AudioPlayerPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/ViewModels/AudioPlayerPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 4/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 4/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 4/packages.config -------------------------------------------------------------------------------- /Chapter 5/.gitignore: -------------------------------------------------------------------------------- 1 | uo 2 | *.user 3 | _ReSharper.* 4 | bin 5 | obj 6 | packages 7 | -------------------------------------------------------------------------------- /Chapter 5/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/App.xaml -------------------------------------------------------------------------------- /Chapter 5/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/App.xaml.cs -------------------------------------------------------------------------------- /Chapter 5/Controls/CustomLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Controls/CustomLabel.cs -------------------------------------------------------------------------------- /Chapter 5/Converters/NotConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Converters/NotConverter.cs -------------------------------------------------------------------------------- /Chapter 5/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter 5/Droid/Assets/GraCoRg_.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Assets/GraCoRg_.ttf -------------------------------------------------------------------------------- /Chapter 5/Droid/Extras/DroidMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Extras/DroidMethods.cs -------------------------------------------------------------------------------- /Chapter 5/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/MainActivity.cs -------------------------------------------------------------------------------- /Chapter 5/Droid/Modules/DroidModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Modules/DroidModule.cs -------------------------------------------------------------------------------- /Chapter 5/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter 5/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 5/Droid/Renderers/CustomLabelRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Renderers/CustomLabelRenderer.cs -------------------------------------------------------------------------------- /Chapter 5/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter 5/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter 5/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter 5/Droid/Resources/drawable/stocklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Resources/drawable/stocklist.png -------------------------------------------------------------------------------- /Chapter 5/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter 5/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter 5/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter 5/Droid/Stocklist.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/Stocklist.Droid.csproj -------------------------------------------------------------------------------- /Chapter 5/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Droid/packages.config -------------------------------------------------------------------------------- /Chapter 5/Modules/XamFormsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Modules/XamFormsModule.cs -------------------------------------------------------------------------------- /Chapter 5/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Pages/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 5/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 5/Pages/StockItemDetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Pages/StockItemDetailsPage.xaml -------------------------------------------------------------------------------- /Chapter 5/Pages/StockItemDetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Pages/StockItemDetailsPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 5/Pages/StocklistPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Pages/StocklistPage.xaml -------------------------------------------------------------------------------- /Chapter 5/Pages/StocklistPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Pages/StocklistPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Enums/PageNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Enums/PageNames.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Extras/IMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Extras/IMethods.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/IoC/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/IoC/IModule.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/IoC/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/IoC/IoC.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Modules/PortableModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Modules/PortableModule.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Resources/Config.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Resources/Config.Designer.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Resources/Config.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Resources/Config.resx -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Resources/LabelResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Resources/LabelResources.Designer.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Resources/LabelResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Resources/LabelResources.resx -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Resources/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Resources/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Resources/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Resources/Resources.resx -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/Stocklist.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/Stocklist.Portable.csproj -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/UI/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/UI/INavigationService.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/ViewModels/StockItemDetailsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/ViewModels/StockItemDetailsPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/ViewModels/StockItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/ViewModels/StockItemViewModel.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/ViewModels/StocklistPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/ViewModels/StocklistPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Portable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Portable/packages.config -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Shared/Modules/SharedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Shared/Modules/SharedModule.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Shared/Stocklist.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Shared/Stocklist.Shared.projitems -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Shared/Stocklist.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Shared/Stocklist.Shared.shproj -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/App.xaml -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/App.xaml.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/BadgeLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/BadgeLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/BadgeLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/BadgeLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/Logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/Logo.scale-140.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/SmallLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/SmallLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/SplashScreen.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/SplashScreen.scale-140.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/Square71x71Logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/Square71x71Logo.scale-140.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/StoreLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/StoreLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/WideLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/WideLogo.scale-140.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Extras/WinphoneMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Extras/WinphoneMethods.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/GraCoRg_.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/GraCoRg_.ttf -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Modules/WinphoneModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Modules/WinphoneModule.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/Stocklist.Winphone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/Stocklist.Winphone.csproj -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/app.config -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/packages.config -------------------------------------------------------------------------------- /Chapter 5/Stocklist.Winphone/stocklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.Winphone/stocklist.png -------------------------------------------------------------------------------- /Chapter 5/Stocklist.XamForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.XamForms.csproj -------------------------------------------------------------------------------- /Chapter 5/Stocklist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.cs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.sln -------------------------------------------------------------------------------- /Chapter 5/Stocklist.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.userprefs -------------------------------------------------------------------------------- /Chapter 5/Stocklist.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist.v12.suo -------------------------------------------------------------------------------- /Chapter 5/Stocklist/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist/Droid/packages.config -------------------------------------------------------------------------------- /Chapter 5/Stocklist/Stocklist.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/Stocklist/Stocklist.userprefs -------------------------------------------------------------------------------- /Chapter 5/UI/INavigableXamarinFormsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/UI/INavigableXamarinFormsPage.cs -------------------------------------------------------------------------------- /Chapter 5/UI/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/UI/NavigationService.cs -------------------------------------------------------------------------------- /Chapter 5/UI/XamarinNavigationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/UI/XamarinNavigationExtensions.cs -------------------------------------------------------------------------------- /Chapter 5/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/UpgradeLog.htm -------------------------------------------------------------------------------- /Chapter 5/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter 5/iOS/Assets.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Assets.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter 5/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Chapter 5/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter 5/iOS/Extras/IOSMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Extras/IOSMethods.cs -------------------------------------------------------------------------------- /Chapter 5/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter 5/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter 5/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Main.cs -------------------------------------------------------------------------------- /Chapter 5/iOS/Modules/iOSModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Modules/iOSModule.cs -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/GraCoRg_.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/GraCoRg_.ttf -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 87px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 87px.png -------------------------------------------------------------------------------- /Chapter 5/iOS/Resources/stocklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Resources/stocklist.png -------------------------------------------------------------------------------- /Chapter 5/iOS/Stocklist.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/Stocklist.iOS.csproj -------------------------------------------------------------------------------- /Chapter 5/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/iOS/packages.config -------------------------------------------------------------------------------- /Chapter 5/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 5/packages.config -------------------------------------------------------------------------------- /Chapter 6/.gitignore: -------------------------------------------------------------------------------- 1 | uo 2 | *.user 3 | _ReSharper.* 4 | bin 5 | obj 6 | packages 7 | -------------------------------------------------------------------------------- /Chapter 6/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/App.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Chat.Common.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Chat.Common.projitems -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Chat.Common.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Chat.Common.shproj -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Events/ChatEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Events/ChatEventArgs.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Events/ClientSelectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Events/ClientSelectedEventArgs.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Events/ConnectedClientsUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Events/ConnectedClientsUpdatedEventArgs.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Model/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Model/Client.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Presenter/BasePresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Presenter/BasePresenter.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Presenter/ChatPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Presenter/ChatPresenter.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Presenter/ClientsListPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Presenter/ClientsListPresenter.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Presenter/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Presenter/IView.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Presenter/LoginPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Presenter/LoginPresenter.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Presenter/Services/ApplicationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Presenter/Services/ApplicationState.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Common/Presenter/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Common/Presenter/Services/INavigationService.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Application.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Chat.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Chat.Droid.csproj -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/drawable/splash.png -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/layout/ChatBoxView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/layout/ChatBoxView.xml -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/layout/ChatView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/layout/ChatView.xml -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/layout/CustomCell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/layout/CustomCell.xml -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/layout/LoginView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/layout/LoginView.xml -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/values/SplashStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/values/SplashStyle.xml -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Services/NavigationService.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/SplashScreenActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/SplashScreenActivity.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Views/ChatActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Views/ChatActivity.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Views/ClientsListActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Views/ClientsListActivity.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Views/ClientsListAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Views/ClientsListAdapter.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/Views/LoginActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/Views/LoginActivity.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Droid/packages.config -------------------------------------------------------------------------------- /Chapter 6/Chat.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.Portable.csproj -------------------------------------------------------------------------------- /Chapter 6/Chat.ServiceAccess/Chat.ServiceAccess.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.ServiceAccess/Chat.ServiceAccess.projitems -------------------------------------------------------------------------------- /Chapter 6/Chat.ServiceAccess/Chat.ServiceAccess.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.ServiceAccess/Chat.ServiceAccess.shproj -------------------------------------------------------------------------------- /Chapter 6/Chat.ServiceAccess/SignalR/SignalRClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.ServiceAccess/SignalR/SignalRClient.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.ServiceAccess/Web/Contracts/TokenContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.ServiceAccess/Web/Contracts/TokenContract.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.ServiceAccess/Web/WebApiAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.ServiceAccess/Web/WebApiAccess.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Chat.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Chat.iOS.csproj -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/ClientsTableSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/ClientsTableSource.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Extras/DictionaryViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Extras/DictionaryViews.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Services/NavigationService.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Views/ChatBoxView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Views/ChatBoxView.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Views/ChatViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Views/ChatViewController.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Views/ClientsListViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Views/ClientsListViewController.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/Views/LoginViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/Views/LoginViewController.cs -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/iTunesArtwork -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /Chapter 6/Chat.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.iOS/packages.config -------------------------------------------------------------------------------- /Chapter 6/Chat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.sln -------------------------------------------------------------------------------- /Chapter 6/Chat.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Chat.userprefs -------------------------------------------------------------------------------- /Chapter 6/IoC/PortableMvxIoCRegistrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/IoC/PortableMvxIoCRegistrations.cs -------------------------------------------------------------------------------- /Chapter 6/Logging/DebugTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Logging/DebugTrace.cs -------------------------------------------------------------------------------- /Chapter 6/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 6/Sound/ISoundHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/Sound/ISoundHandler.cs -------------------------------------------------------------------------------- /Chapter 6/ViewModels/AudioPlayerPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/ViewModels/AudioPlayerPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 6/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 6/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/packages.config -------------------------------------------------------------------------------- /Chapter 6/sigr/android/Microsoft.AspNet.SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/android/Microsoft.AspNet.SignalR.Client.dll -------------------------------------------------------------------------------- /Chapter 6/sigr/android/Microsoft.AspNet.SignalR.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/android/Microsoft.AspNet.SignalR.Client.xml -------------------------------------------------------------------------------- /Chapter 6/sigr/android/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/android/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter 6/sigr/android/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/android/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /Chapter 6/sigr/android/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/android/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /Chapter 6/sigr/ios-unified/Microsoft.AspNet.SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/ios-unified/Microsoft.AspNet.SignalR.Client.dll -------------------------------------------------------------------------------- /Chapter 6/sigr/ios-unified/Microsoft.AspNet.SignalR.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/ios-unified/Microsoft.AspNet.SignalR.Client.xml -------------------------------------------------------------------------------- /Chapter 6/sigr/ios-unified/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/ios-unified/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter 6/sigr/ios-unified/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/ios-unified/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /Chapter 6/sigr/ios-unified/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/ios-unified/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /Chapter 6/sigr/wp8/Microsoft.AspNet.SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/wp8/Microsoft.AspNet.SignalR.Client.dll -------------------------------------------------------------------------------- /Chapter 6/sigr/wp8/Microsoft.AspNet.SignalR.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 6/sigr/wp8/Microsoft.AspNet.SignalR.Client.xml -------------------------------------------------------------------------------- /Chapter 7/.gitignore: -------------------------------------------------------------------------------- 1 | uo 2 | *.user 3 | _ReSharper.* 4 | bin 5 | obj 6 | packages 7 | -------------------------------------------------------------------------------- /Chapter 7/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/App.xaml -------------------------------------------------------------------------------- /Chapter 7/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/App.xaml.cs -------------------------------------------------------------------------------- /Chapter 7/Backup/MapsTest.win81/MapsTest.win81.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Backup/MapsTest.win81/MapsTest.win81.csproj -------------------------------------------------------------------------------- /Chapter 7/Backup/MapsTest.win81/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Backup/MapsTest.win81/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter 7/Behaviours/LowercaseEntryBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Behaviours/LowercaseEntryBehaviour.cs -------------------------------------------------------------------------------- /Chapter 7/Controls/CarouselLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Controls/CarouselLayout.cs -------------------------------------------------------------------------------- /Chapter 7/Controls/CarouselScroll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Controls/CarouselScroll.cs -------------------------------------------------------------------------------- /Chapter 7/Controls/CarouselView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Controls/CarouselView.xaml -------------------------------------------------------------------------------- /Chapter 7/Controls/CarouselView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Controls/CarouselView.xaml.cs -------------------------------------------------------------------------------- /Chapter 7/Controls/GestureView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Controls/GestureView.cs -------------------------------------------------------------------------------- /Chapter 7/Converters/NotConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Converters/NotConverter.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter 7/Droid/DataAccess/SQLiteSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/DataAccess/SQLiteSetup.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/Extras/DroidMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Extras/DroidMethods.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/FileStorage.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/FileStorage.Droid.csproj -------------------------------------------------------------------------------- /Chapter 7/Droid/Logging/LoggerDroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Logging/LoggerDroid.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/MainActivity.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/Modules/DroidModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Modules/DroidModule.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter 7/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/Renderers/GestureView/GestureListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Renderers/GestureView/GestureListener.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/Renderers/GestureView/GestureViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Renderers/GestureView/GestureViewRenderer.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter 7/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter 7/Droid/Resources/drawable/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Resources/drawable/file.png -------------------------------------------------------------------------------- /Chapter 7/Droid/Resources/drawable/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Resources/drawable/files.png -------------------------------------------------------------------------------- /Chapter 7/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter 7/Droid/Resources/layout/EntryAlertView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/Resources/layout/EntryAlertView.xml -------------------------------------------------------------------------------- /Chapter 7/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Droid/packages.config -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/DataAccess/Storable/FileStorable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/DataAccess/Storable/FileStorable.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/DataAccess/Storable/IStorable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/DataAccess/Storable/IStorable.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/DataAccess/Storable/StorableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/DataAccess/Storable/StorableExtensions.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/DataAccess/Storage/ISQLiteSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/DataAccess/Storage/ISQLiteSetup.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/DataAccess/Storage/ISQLiteStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/DataAccess/Storage/ISQLiteStorage.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/DataAccess/Storage/SQLiteStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/DataAccess/Storage/SQLiteStorage.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Enums/PageNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Enums/PageNames.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Extras/IMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Extras/IMethods.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/FileStorage.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/FileStorage.Portable.csproj -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/IoC/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/IoC/IModule.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/IoC/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/IoC/IoC.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Logging/ILogger.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Modules/PortableModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Modules/PortableModule.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Resources/ApiConfig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Resources/ApiConfig.Designer.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Resources/ApiConfig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Resources/ApiConfig.resx -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Resources/Config.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Resources/LabelResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Resources/LabelResources.Designer.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Resources/LabelResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Resources/LabelResources.resx -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Threading/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Threading/AsyncLock.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/Threading/AsyncSemaphore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/Threading/AsyncSemaphore.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/UI/DataChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/UI/DataChange.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/UI/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/UI/INavigationService.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/UI/ScrollChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/UI/ScrollChange.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/ViewModels/EditFilePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/ViewModels/EditFilePageViewModel.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/ViewModels/FileItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/ViewModels/FileItemViewModel.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/ViewModels/FilesPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/ViewModels/FilesPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.Portable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.Portable/packages.config -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/App.xaml -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Assets/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Assets/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/FileStorage.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/FileStorage.WinPhone.csproj -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Modules/WinPhoneModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Modules/WinPhoneModule.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/Services/TextToSpeechWinPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/Services/TextToSpeechWinPhone.cs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/files.png -------------------------------------------------------------------------------- /Chapter 7/FileStorage.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.WinPhone/packages.config -------------------------------------------------------------------------------- /Chapter 7/FileStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.csproj -------------------------------------------------------------------------------- /Chapter 7/FileStorage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.sln -------------------------------------------------------------------------------- /Chapter 7/FileStorage.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.userprefs -------------------------------------------------------------------------------- /Chapter 7/FileStorage.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/FileStorage.v12.suo -------------------------------------------------------------------------------- /Chapter 7/Modules/XamFormsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Modules/XamFormsModule.cs -------------------------------------------------------------------------------- /Chapter 7/Pages/EditFilePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Pages/EditFilePage.xaml -------------------------------------------------------------------------------- /Chapter 7/Pages/EditFilePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Pages/EditFilePage.xaml.cs -------------------------------------------------------------------------------- /Chapter 7/Pages/FilesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Pages/FilesPage.xaml -------------------------------------------------------------------------------- /Chapter 7/Pages/FilesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Pages/FilesPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 7/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Pages/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 7/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 7/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 7/UI/ExtendedContentPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/UI/ExtendedContentPage.cs -------------------------------------------------------------------------------- /Chapter 7/UI/INavigableXamarinFormsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/UI/INavigableXamarinFormsPage.cs -------------------------------------------------------------------------------- /Chapter 7/UI/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/UI/NavigationService.cs -------------------------------------------------------------------------------- /Chapter 7/UI/XamarinNavigationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/UI/XamarinNavigationExtensions.cs -------------------------------------------------------------------------------- /Chapter 7/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/UpgradeLog.htm -------------------------------------------------------------------------------- /Chapter 7/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter 7/iOS/DataAccess/SQLiteSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/DataAccess/SQLiteSetup.cs -------------------------------------------------------------------------------- /Chapter 7/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter 7/iOS/Extras/IOSMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Extras/IOSMethods.cs -------------------------------------------------------------------------------- /Chapter 7/iOS/FileStorage.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/FileStorage.iOS.csproj -------------------------------------------------------------------------------- /Chapter 7/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter 7/iOS/Logging/LoggeriOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Logging/LoggeriOS.cs -------------------------------------------------------------------------------- /Chapter 7/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Main.cs -------------------------------------------------------------------------------- /Chapter 7/iOS/Modules/iOSModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Modules/iOSModule.cs -------------------------------------------------------------------------------- /Chapter 7/iOS/Renderers/GestureView/GestureViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Renderers/GestureView/GestureViewRenderer.cs -------------------------------------------------------------------------------- /Chapter 7/iOS/Renderers/GestureView/GestureViewiOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Renderers/GestureView/GestureViewiOS.cs -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 87px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 87px.png -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/file.png -------------------------------------------------------------------------------- /Chapter 7/iOS/Resources/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/Resources/files.png -------------------------------------------------------------------------------- /Chapter 7/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/iOS/packages.config -------------------------------------------------------------------------------- /Chapter 7/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 7/packages.config -------------------------------------------------------------------------------- /Chapter 8/.gitignore: -------------------------------------------------------------------------------- 1 | uo 2 | *.user 3 | _ReSharper.* 4 | bin 5 | obj 6 | packages 7 | -------------------------------------------------------------------------------- /Chapter 8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/App.xaml -------------------------------------------------------------------------------- /Chapter 8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/App.xaml.cs -------------------------------------------------------------------------------- /Chapter 8/Backup/MapsTest.win81/MapsTest.win81.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Backup/MapsTest.win81/MapsTest.win81.csproj -------------------------------------------------------------------------------- /Chapter 8/Backup/MapsTest.win81/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Backup/MapsTest.win81/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Camera.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/Camera.Portable.csproj -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Enums/Orientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/Enums/Orientation.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Enums/PageNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/Enums/PageNames.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Extras/IMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/Extras/IMethods.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/IoC/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/IoC/IModule.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/IoC/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/IoC/IoC.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/Logging/ILogger.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Modules/PortableModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/Modules/PortableModule.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Resources/Config.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Resources/LabelResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/Resources/LabelResources.Designer.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/Resources/LabelResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/Resources/LabelResources.resx -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/UI/AlertArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/UI/AlertArgs.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/UI/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/UI/INavigationService.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/ViewModels/CameraPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/ViewModels/CameraPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.Portable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.Portable/packages.config -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/App.xaml -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Assets/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Assets/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Camera.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Camera.WinPhone.csproj -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Modules/WinPhoneModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Modules/WinPhoneModule.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/Services/TextToSpeechWinPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/Services/TextToSpeechWinPhone.cs -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/files.png -------------------------------------------------------------------------------- /Chapter 8/Camera.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.WinPhone/packages.config -------------------------------------------------------------------------------- /Chapter 8/Camera.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.csproj -------------------------------------------------------------------------------- /Chapter 8/Camera.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.sln -------------------------------------------------------------------------------- /Chapter 8/Camera.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.userprefs -------------------------------------------------------------------------------- /Chapter 8/Camera.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Camera.v12.suo -------------------------------------------------------------------------------- /Chapter 8/Controls/CameraView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Controls/CameraView.cs -------------------------------------------------------------------------------- /Chapter 8/Controls/CustomImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Controls/CustomImage.cs -------------------------------------------------------------------------------- /Chapter 8/Controls/FocusView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Controls/FocusView.cs -------------------------------------------------------------------------------- /Chapter 8/Controls/LoadingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Controls/LoadingView.xaml -------------------------------------------------------------------------------- /Chapter 8/Controls/LoadingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Controls/LoadingView.xaml.cs -------------------------------------------------------------------------------- /Chapter 8/Controls/OrientationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Controls/OrientationPage.cs -------------------------------------------------------------------------------- /Chapter 8/Converters/.#ByteArrayToImageSourceConverter.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/Converters/.#NotConverter.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/Converters/BoolToPartialConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Converters/BoolToPartialConverter.cs -------------------------------------------------------------------------------- /Chapter 8/Converters/BoolToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Converters/BoolToStringConverter.cs -------------------------------------------------------------------------------- /Chapter 8/Converters/ByteArrayToImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Converters/ByteArrayToImageSourceConverter.cs -------------------------------------------------------------------------------- /Chapter 8/Converters/NotConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Converters/NotConverter.cs -------------------------------------------------------------------------------- /Chapter 8/Converters/OrientationToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Converters/OrientationToBoolConverter.cs -------------------------------------------------------------------------------- /Chapter 8/Converters/OrientationToDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Converters/OrientationToDoubleConverter.cs -------------------------------------------------------------------------------- /Chapter 8/Converters/OrientationToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Converters/OrientationToIntConverter.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter 8/Droid/Camera.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Camera.Droid.csproj -------------------------------------------------------------------------------- /Chapter 8/Droid/Camera.Droid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Camera.Droid.sln -------------------------------------------------------------------------------- /Chapter 8/Droid/Camera.Droid.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Camera.Droid.userprefs -------------------------------------------------------------------------------- /Chapter 8/Droid/Effects/LabelShadowEffectDroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Effects/LabelShadowEffectDroid.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Extras/DroidMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Extras/DroidMethods.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Logging/LoggerDroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Logging/LoggerDroid.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/MainActivity.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Modules/DroidModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Modules/DroidModule.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter 8/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/CameraView/AutoFitTextureView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/CameraView/AutoFitTextureView.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/CameraView/CameraCaptureListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/CameraView/CameraCaptureListener.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/CameraView/CameraCaptureStateListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/CameraView/CameraCaptureStateListener.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/CameraView/CameraDroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/CameraView/CameraDroid.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/CameraView/CameraStateListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/CameraView/CameraStateListener.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/CameraView/CameraViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/CameraView/CameraViewRenderer.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/CameraView/ImageAvailableListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/CameraView/ImageAvailableListener.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/CustomImage/CustomImageRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/CustomImage/CustomImageRenderer.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/FocusView/FocusViewGestureDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/FocusView/FocusViewGestureDetector.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Renderers/FocusView/FocusViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Renderers/FocusView/FocusViewRenderer.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable-hdpi/photo_camera_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable-hdpi/photo_camera_button.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable-hdpi/photo_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable-hdpi/photo_focus.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable-hdpi/photo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable-hdpi/photo_light.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable-hdpi/photo_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable-hdpi/photo_trash.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable/camera.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable/photo_camera_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable/photo_camera_button.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable/photo_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable/photo_focus.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable/photo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable/photo_light.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/drawable/photo_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/drawable/photo_trash.png -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/layout/CameraLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/layout/CameraLayout.xml -------------------------------------------------------------------------------- /Chapter 8/Droid/Resources/layout/EntryAlertView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/Resources/layout/EntryAlertView.xml -------------------------------------------------------------------------------- /Chapter 8/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Droid/packages.config -------------------------------------------------------------------------------- /Chapter 8/Effects/LabelShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Effects/LabelShadowEffect.cs -------------------------------------------------------------------------------- /Chapter 8/Modules/XamFormsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Modules/XamFormsModule.cs -------------------------------------------------------------------------------- /Chapter 8/Pages/CameraPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Pages/CameraPage.xaml -------------------------------------------------------------------------------- /Chapter 8/Pages/CameraPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Pages/CameraPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 8/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Pages/MainPage.xaml -------------------------------------------------------------------------------- /Chapter 8/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter 8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter 8/Triggers/ButtonClickedTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Triggers/ButtonClickedTrigger.cs -------------------------------------------------------------------------------- /Chapter 8/Triggers/VisualElementPopTriggerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/Triggers/VisualElementPopTriggerAction.cs -------------------------------------------------------------------------------- /Chapter 8/UI/ExtendedContentPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/UI/ExtendedContentPage.cs -------------------------------------------------------------------------------- /Chapter 8/UI/INavigableXamarinFormsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/UI/INavigableXamarinFormsPage.cs -------------------------------------------------------------------------------- /Chapter 8/UI/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/UI/NavigationService.cs -------------------------------------------------------------------------------- /Chapter 8/UI/XamarinNavigationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/UI/XamarinNavigationExtensions.cs -------------------------------------------------------------------------------- /Chapter 8/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/UpgradeLog.htm -------------------------------------------------------------------------------- /Chapter 8/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Camera.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Camera.iOS.csproj -------------------------------------------------------------------------------- /Chapter 8/iOS/Device/Xamarin.iOS.DeviceHarware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Device/Xamarin.iOS.DeviceHarware.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Effects/LabelShadowEffectiOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Effects/LabelShadowEffectiOS.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter 8/iOS/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Extras/IOSMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Extras/IOSMethods.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Helpers/UIImageEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Helpers/UIImageEffects.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter 8/iOS/Logging/LoggeriOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Logging/LoggeriOS.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Main.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Modules/iOSModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Modules/iOSModule.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Renderers/CameraView/CameraIOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Renderers/CameraView/CameraIOS.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Renderers/CameraView/CameraViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Renderers/CameraView/CameraViewRenderer.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Renderers/CustomImage/CustomImageRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Renderers/CustomImage/CustomImageRenderer.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Renderers/FocusView/FocusViewRendererTouchAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Renderers/FocusView/FocusViewRendererTouchAttribute.cs -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 114px.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 120px.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 144px.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 152px.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 167px.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/Images.xcassets/AppIcons.appiconset/Flush App Icon - 180px.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/camera.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_camera_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_camera_button.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_camera_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_camera_button@2x.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_check.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_check@2x.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_focus.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_focus@2x.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_light.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_light@2x.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_trash.png -------------------------------------------------------------------------------- /Chapter 8/iOS/Resources/photo_trash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/Resources/photo_trash@2x.png -------------------------------------------------------------------------------- /Chapter 8/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/iOS/packages.config -------------------------------------------------------------------------------- /Chapter 8/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/Chapter 8/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Xamarin-Blueprints/HEAD/README.md --------------------------------------------------------------------------------