├── .gitignore ├── .gitmodules ├── Clean-BinObj.ps1 ├── README.md ├── Settings.XamlStyler ├── SillyCompany.Mobile.Practices.Droid ├── Assets │ ├── AboutAssets.txt │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-ExtraBold.ttf │ ├── OpenSans-ExtraBoldItalic.ttf │ ├── OpenSans-Italic.ttf │ ├── OpenSans-Light.ttf │ ├── OpenSans-LightItalic.ttf │ ├── OpenSans-Regular.ttf │ ├── OpenSans-SemiBold.ttf │ └── OpenSans-SemiBoldItalic.ttf ├── DroidEntryPointSingleton.cs ├── FoldingScreen │ ├── HingeService.cs │ └── LayoutService.cs ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── drawable-xhdpi │ │ └── silly_96dp.png │ ├── drawable-xxxhdpi │ │ └── silly_48dp.png │ ├── drawable │ │ ├── back_96.png │ │ ├── bliss.jpg │ │ ├── bliss_portrait.jpg │ │ ├── camera_96.png │ │ ├── dougal.png │ │ ├── grid_view_96.png │ │ ├── house_96.png │ │ ├── jean_claude_van_damme.jpg │ │ ├── knights_of_ni.jpg │ │ ├── list_96.png │ │ ├── louis_ck.jpg │ │ ├── monty_python_foot.png │ │ ├── richmond.png │ │ ├── server.png │ │ ├── silly_96dp.png │ │ ├── spam_classic.png │ │ ├── spam_classic_empty.png │ │ ├── spam_classic_grid.png │ │ ├── spam_classic_home.png │ │ ├── spam_classic_list.png │ │ ├── spam_classic_tabs.png │ │ ├── the_internet.png │ │ ├── theme_96.png │ │ ├── vista.jpg │ │ ├── vista_portrait.jpg │ │ ├── vista_portrait_2.jpg │ │ └── will_ferrell.jpg │ ├── font │ │ └── OpenSansBold.ttf │ ├── layout │ │ ├── Splash.axml │ │ └── toolbar.axml │ ├── values-v21 │ │ └── themes.xml │ ├── values │ │ ├── Strings.xml │ │ ├── colors.xml │ │ ├── dimen.xml │ │ ├── styles.xml │ │ └── themes.xml │ └── xml │ │ └── network_security_config.xml ├── Settings.StyleCop ├── SillyApplication.cs ├── SillyCompany.Mobile.Practices.Droid.csproj ├── SplashScreen.cs └── packages.config ├── SillyCompany.Mobile.Practices.UWP ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── SillyCompany.Mobile.Practices.UWP.csproj ├── back_96.png ├── bliss_portrait.jpg ├── grid_view_96.png ├── house_96.png ├── list_96.png ├── richmond.png ├── server.png ├── silly_96dp.png ├── spam_classic.png ├── spam_classic_empty.png ├── spam_classic_grid.png ├── spam_classic_home.png ├── spam_classic_list.png ├── spam_classic_tabs.png ├── the_internet.png └── vista_portrait.jpg ├── SillyCompany.Mobile.Practices.iOS ├── AppDelegate.cs ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Media.xcassets │ ├── AppIcons.appiconset │ │ ├── Contents.json │ │ ├── icons8-grid-view-96.png │ │ ├── icons8-house-96.png │ │ └── icons8-list-96.png │ ├── LaunchImages.launchimage │ │ └── Contents.json │ └── SplashIcon.imageset │ │ ├── Contents.json │ │ └── silly_96dp.png ├── Properties │ └── AssemblyInfo.cs ├── Renderers │ ├── BorderlessPickerRenderer.cs │ └── iOSNavigationBarRenderer.cs ├── Resources │ ├── Font │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-SemiBold.ttf │ │ └── OpenSans-SemiBoldItalic.ttf │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-40.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x - Copy.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ ├── LaunchScreen.storyboard │ ├── back_96.png │ ├── bliss.jpg │ ├── bliss_portrait.jpg │ ├── camera_96.png │ ├── dougal.png │ ├── grid_view_96.png │ ├── house_96.png │ ├── jean_claude_van_damme.jpg │ ├── knights_of_ni.jpg │ ├── list_96.png │ ├── louis_ck.jpg │ ├── monty_python_foot.png │ ├── richmond.png │ ├── server.png │ ├── silly_96dp.png │ ├── spam_classic.png │ ├── spam_classic_empty.png │ ├── spam_classic_grid.png │ ├── spam_classic_home.png │ ├── spam_classic_list.png │ ├── spam_classic_tabs.png │ ├── the_internet.png │ ├── theme_96.png │ ├── vista.jpg │ ├── vista_portrait.jpg │ ├── vista_portrait_2.jpg │ └── will_ferrell.jpg ├── SillyCompany.Mobile.Practices.iOS.csproj ├── iTunesArtwork └── iTunesArtwork@2x ├── SillyCompany.Mobile.Practices.sln ├── SillyCompany.Mobile.Practices.sln.DotSettings ├── SillyCompany.Mobile.Practices ├── App.xaml ├── App.xaml.cs ├── CoreEntryPoint.cs ├── DependencyContainer.cs ├── Domain │ ├── ApplicationExceptions.cs │ └── Silly │ │ ├── ISillyDudeService.cs │ │ ├── SillyDude.cs │ │ └── SillyDudeService.cs ├── Infrastructure │ ├── ErrorEmulator.cs │ └── PlatformService.cs ├── Localization │ ├── Filmos.Designer.cs │ ├── Filmos.resx │ ├── SillyResources.Designer.cs │ ├── SillyResources.resx │ └── TranslateExtension.cs ├── LoggerFactory.cs ├── Presentation │ ├── Behaviors │ │ ├── BehaviorBase.cs │ │ ├── EventToCommandBehavior.cs │ │ └── SelectedItemBehavior.cs │ ├── Commands │ │ ├── AsyncCommand.cs │ │ ├── AsyncCommandBase.cs │ │ └── IAsyncCommand.cs │ ├── Converters │ │ ├── ExceptionToErrorMessageConverter.cs │ │ ├── ExceptionToImageSourceConverter.cs │ │ ├── IsNotNullConverter.cs │ │ ├── IsNullConverter.cs │ │ ├── NullToValueConverter.cs │ │ ├── SafeAreaToDoubleConverter.cs │ │ ├── SafeAreaToGridLengthConverter.cs │ │ ├── SelectedItemEventArgsToSelectedItemConverter .cs │ │ └── SizeScalingByScreenConverter.cs │ ├── CustomViews │ │ ├── FoldingScreen │ │ │ ├── FormsWindow.cs │ │ │ ├── IHingeService.cs │ │ │ ├── ILayoutService.cs │ │ │ └── TwoPaneView.cs │ │ ├── RatingView.cs │ │ ├── SpamTab.xaml │ │ ├── SpamTab.xaml.cs │ │ ├── Toolbar.xaml │ │ └── Toolbar.xaml.cs │ ├── Navigables │ │ ├── INavigationService.cs │ │ ├── IViewLocator.cs │ │ ├── Impl │ │ │ ├── FormsNavigationService.cs │ │ │ └── ViewLocator.cs │ │ └── NavigationTransition.cs │ ├── StandAlonePaginator.CompileNone.cs │ ├── ViewModels │ │ ├── ANavigableViewModel.cs │ │ ├── DudeDetails │ │ │ ├── FilmoVmo.cs │ │ │ ├── MemeVmo.cs │ │ │ ├── QuoteVmo.cs │ │ │ └── SillyDudeVm.cs │ │ ├── ErrorEmulatorVm.cs │ │ ├── SillyDudeVmo.cs │ │ ├── SillyInfiniteGridPeopleVm.cs │ │ ├── SillyInfinitePeopleVm.cs │ │ ├── SillyPeopleVm.cs │ │ ├── SortSillyPeopleVm.cs │ │ ├── SurfaceDuo │ │ │ └── TwoPanePageViewModel.cs │ │ └── TabsLayout │ │ │ ├── GridPageViewModel.cs │ │ │ ├── HomePageViewModel.cs │ │ │ ├── ListPageViewModel.cs │ │ │ └── SillyBottomTabsPageViewModel.cs │ └── Views │ │ ├── AlternateSillySquareCell.xaml │ │ ├── AlternateSillySquareCell.xaml.cs │ │ ├── DudeDetails │ │ ├── Filmo.xaml │ │ ├── Filmo.xaml.cs │ │ ├── Meme.xaml │ │ ├── Meme.xaml.cs │ │ ├── Quote.xaml │ │ ├── Quote.xaml.cs │ │ ├── SillyDudePage.xaml │ │ └── SillyDudePage.xaml.cs │ │ ├── IBindablePage.cs │ │ ├── OldLayout │ │ ├── SillyInfiniteGridPeoplePage.xaml │ │ ├── SillyInfiniteGridPeoplePage.xaml.cs │ │ ├── SillyInfinitePeoplePage.xaml │ │ ├── SillyInfinitePeoplePage.xaml.cs │ │ ├── SillyPeoplePage.xaml │ │ ├── SillyPeoplePage.xaml.cs │ │ ├── SmallSillySquareCell.xaml │ │ ├── SmallSillySquareCell.xaml.cs │ │ ├── SortSillyPeoplePage.xaml │ │ ├── SortSillyPeoplePage.xaml.cs │ │ └── SortableDudeTemplateSelector.cs │ │ ├── ResourcesHelper.cs │ │ ├── SillyCell.xaml │ │ ├── SillyCell.xaml.cs │ │ ├── SillyContentPage.cs │ │ ├── SillyDudeTemplateSelector.cs │ │ ├── SillySquareCell.xaml │ │ ├── SillySquareCell.xaml.cs │ │ ├── SurfaceDuo │ │ ├── TwoPanePage.xaml │ │ └── TwoPanePage.xaml.cs │ │ └── TabsLayout │ │ ├── GridView.xaml │ │ ├── GridView.xaml.cs │ │ ├── HomeView.xaml │ │ ├── HomeView.xaml.cs │ │ ├── ListView.xaml │ │ ├── ListView.xaml.cs │ │ ├── SillyBottomTabsPage.xaml │ │ └── SillyBottomTabsPage.xaml.cs ├── SillyCompany.Mobile.Practices.csproj └── packages.config ├── StyleCopRules.ruleset └── __Docs__ ├── android_silly_app.gif ├── bottom_tabs_uwp.png ├── dark_mode_ios.gif ├── dynamic_themes.gif └── ios_segmented_neu.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/.gitmodules -------------------------------------------------------------------------------- /Clean-BinObj.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/Clean-BinObj.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/README.md -------------------------------------------------------------------------------- /Settings.XamlStyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/Settings.XamlStyler -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-Light.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Assets/OpenSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/DroidEntryPointSingleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/DroidEntryPointSingleton.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/FoldingScreen/HingeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/FoldingScreen/HingeService.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/FoldingScreen/LayoutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/FoldingScreen/LayoutService.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/MainActivity.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable-xhdpi/silly_96dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable-xhdpi/silly_96dp.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable-xxxhdpi/silly_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable-xxxhdpi/silly_48dp.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/back_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/back_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/bliss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/bliss.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/bliss_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/bliss_portrait.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/camera_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/camera_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/dougal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/dougal.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/grid_view_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/grid_view_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/house_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/house_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/jean_claude_van_damme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/jean_claude_van_damme.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/knights_of_ni.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/knights_of_ni.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/list_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/list_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/louis_ck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/louis_ck.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/monty_python_foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/monty_python_foot.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/richmond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/richmond.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/server.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/silly_96dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/silly_96dp.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_empty.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_grid.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_home.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_list.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/spam_classic_tabs.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/the_internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/the_internet.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/theme_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/theme_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/vista.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/vista.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/vista_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/vista_portrait.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/vista_portrait_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/vista_portrait_2.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/drawable/will_ferrell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/drawable/will_ferrell.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/font/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/font/OpenSansBold.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/layout/Splash.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/layout/Splash.axml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/layout/toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/layout/toolbar.axml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/values-v21/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/values-v21/themes.xml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/values/Strings.xml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/values/colors.xml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/values/dimen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/values/dimen.xml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/values/themes.xml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Resources/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Resources/xml/network_security_config.xml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/Settings.StyleCop -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/SillyApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/SillyApplication.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/SillyCompany.Mobile.Practices.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/SillyCompany.Mobile.Practices.Droid.csproj -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/SplashScreen.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.Droid/packages.config -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/App.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/App.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/MainPage.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/SillyCompany.Mobile.Practices.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/SillyCompany.Mobile.Practices.UWP.csproj -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/back_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/back_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/bliss_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/bliss_portrait.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/grid_view_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/grid_view_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/house_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/house_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/list_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/list_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/richmond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/richmond.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/server.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/silly_96dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/silly_96dp.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/spam_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/spam_classic.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/spam_classic_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/spam_classic_empty.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/spam_classic_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/spam_classic_grid.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/spam_classic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/spam_classic_home.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/spam_classic_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/spam_classic_list.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/spam_classic_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/spam_classic_tabs.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/the_internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/the_internet.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.UWP/vista_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.UWP/vista_portrait.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Entitlements.plist -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Info.plist -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Main.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Media.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Media.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Media.xcassets/AppIcons.appiconset/icons8-grid-view-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Media.xcassets/AppIcons.appiconset/icons8-grid-view-96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Media.xcassets/AppIcons.appiconset/icons8-house-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Media.xcassets/AppIcons.appiconset/icons8-house-96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Media.xcassets/AppIcons.appiconset/icons8-list-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Media.xcassets/AppIcons.appiconset/icons8-list-96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Media.xcassets/LaunchImages.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Media.xcassets/LaunchImages.launchimage/Contents.json -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Media.xcassets/SplashIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Media.xcassets/SplashIcon.imageset/Contents.json -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Media.xcassets/SplashIcon.imageset/silly_96dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Media.xcassets/SplashIcon.imageset/silly_96dp.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Renderers/BorderlessPickerRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Renderers/BorderlessPickerRenderer.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Renderers/iOSNavigationBarRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Renderers/iOSNavigationBarRenderer.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-Light.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Font/OpenSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small@2x - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small@2x - Copy.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/back_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/back_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/bliss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/bliss.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/bliss_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/bliss_portrait.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/camera_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/camera_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/dougal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/dougal.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/grid_view_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/grid_view_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/house_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/house_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/jean_claude_van_damme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/jean_claude_van_damme.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/knights_of_ni.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/knights_of_ni.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/list_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/list_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/louis_ck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/louis_ck.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/monty_python_foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/monty_python_foot.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/richmond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/richmond.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/server.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/silly_96dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/silly_96dp.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/spam_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/spam_classic.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_empty.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_grid.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_home.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_list.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/spam_classic_tabs.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/the_internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/the_internet.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/theme_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/theme_96.png -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/vista.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/vista.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/vista_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/vista_portrait.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/vista_portrait_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/vista_portrait_2.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/Resources/will_ferrell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/Resources/will_ferrell.jpg -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/SillyCompany.Mobile.Practices.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/SillyCompany.Mobile.Practices.iOS.csproj -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/iTunesArtwork -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.sln -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices.sln.DotSettings -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/App.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/App.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/CoreEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/CoreEntryPoint.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/DependencyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/DependencyContainer.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Domain/ApplicationExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Domain/ApplicationExceptions.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Domain/Silly/ISillyDudeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Domain/Silly/ISillyDudeService.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Domain/Silly/SillyDude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Domain/Silly/SillyDude.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Domain/Silly/SillyDudeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Domain/Silly/SillyDudeService.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Infrastructure/ErrorEmulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Infrastructure/ErrorEmulator.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Infrastructure/PlatformService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Infrastructure/PlatformService.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Localization/Filmos.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Localization/Filmos.Designer.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Localization/Filmos.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Localization/Filmos.resx -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Localization/SillyResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Localization/SillyResources.Designer.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Localization/SillyResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Localization/SillyResources.resx -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Localization/TranslateExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Localization/TranslateExtension.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/LoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/LoggerFactory.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Behaviors/BehaviorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Behaviors/BehaviorBase.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Behaviors/EventToCommandBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Behaviors/EventToCommandBehavior.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Behaviors/SelectedItemBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Behaviors/SelectedItemBehavior.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Commands/AsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Commands/AsyncCommand.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Commands/AsyncCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Commands/AsyncCommandBase.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Commands/IAsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Commands/IAsyncCommand.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Converters/ExceptionToErrorMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Converters/ExceptionToErrorMessageConverter.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Converters/ExceptionToImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Converters/ExceptionToImageSourceConverter.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Converters/IsNotNullConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Converters/IsNotNullConverter.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Converters/IsNullConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Converters/IsNullConverter.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Converters/NullToValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Converters/NullToValueConverter.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Converters/SafeAreaToDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Converters/SafeAreaToDoubleConverter.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Converters/SafeAreaToGridLengthConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Converters/SafeAreaToGridLengthConverter.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Converters/SelectedItemEventArgsToSelectedItemConverter .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Converters/SelectedItemEventArgsToSelectedItemConverter .cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Converters/SizeScalingByScreenConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Converters/SizeScalingByScreenConverter.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/CustomViews/FoldingScreen/FormsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/CustomViews/FoldingScreen/FormsWindow.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/CustomViews/FoldingScreen/IHingeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/CustomViews/FoldingScreen/IHingeService.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/CustomViews/FoldingScreen/ILayoutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/CustomViews/FoldingScreen/ILayoutService.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/CustomViews/FoldingScreen/TwoPaneView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/CustomViews/FoldingScreen/TwoPaneView.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/CustomViews/RatingView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/CustomViews/RatingView.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/CustomViews/SpamTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/CustomViews/SpamTab.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/CustomViews/SpamTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/CustomViews/SpamTab.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/CustomViews/Toolbar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/CustomViews/Toolbar.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/CustomViews/Toolbar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/CustomViews/Toolbar.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Navigables/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Navigables/INavigationService.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Navigables/IViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Navigables/IViewLocator.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Navigables/Impl/FormsNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Navigables/Impl/FormsNavigationService.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Navigables/Impl/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Navigables/Impl/ViewLocator.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Navigables/NavigationTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Navigables/NavigationTransition.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/StandAlonePaginator.CompileNone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/StandAlonePaginator.CompileNone.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/ANavigableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/ANavigableViewModel.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/DudeDetails/FilmoVmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/DudeDetails/FilmoVmo.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/DudeDetails/MemeVmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/DudeDetails/MemeVmo.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/DudeDetails/QuoteVmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/DudeDetails/QuoteVmo.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/DudeDetails/SillyDudeVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/DudeDetails/SillyDudeVm.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/ErrorEmulatorVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/ErrorEmulatorVm.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/SillyDudeVmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/SillyDudeVmo.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/SillyInfiniteGridPeopleVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/SillyInfiniteGridPeopleVm.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/SillyInfinitePeopleVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/SillyInfinitePeopleVm.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/SillyPeopleVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/SillyPeopleVm.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/SortSillyPeopleVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/SortSillyPeopleVm.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/SurfaceDuo/TwoPanePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/SurfaceDuo/TwoPanePageViewModel.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/TabsLayout/GridPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/TabsLayout/GridPageViewModel.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/TabsLayout/HomePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/TabsLayout/HomePageViewModel.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/TabsLayout/ListPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/TabsLayout/ListPageViewModel.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/ViewModels/TabsLayout/SillyBottomTabsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/ViewModels/TabsLayout/SillyBottomTabsPageViewModel.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/AlternateSillySquareCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/AlternateSillySquareCell.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/AlternateSillySquareCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/AlternateSillySquareCell.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Filmo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Filmo.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Filmo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Filmo.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Meme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Meme.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Meme.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Meme.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Quote.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Quote.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Quote.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/Quote.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/SillyDudePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/SillyDudePage.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/SillyDudePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/DudeDetails/SillyDudePage.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/IBindablePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/IBindablePage.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyInfiniteGridPeoplePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyInfiniteGridPeoplePage.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyInfiniteGridPeoplePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyInfiniteGridPeoplePage.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyInfinitePeoplePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyInfinitePeoplePage.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyInfinitePeoplePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyInfinitePeoplePage.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyPeoplePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyPeoplePage.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyPeoplePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SillyPeoplePage.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SmallSillySquareCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SmallSillySquareCell.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SmallSillySquareCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SmallSillySquareCell.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SortSillyPeoplePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SortSillyPeoplePage.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SortSillyPeoplePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SortSillyPeoplePage.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SortableDudeTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/OldLayout/SortableDudeTemplateSelector.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/ResourcesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/ResourcesHelper.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/SillyCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/SillyCell.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/SillyCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/SillyCell.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/SillyContentPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/SillyContentPage.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/SillyDudeTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/SillyDudeTemplateSelector.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/SillySquareCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/SillySquareCell.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/SillySquareCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/SillySquareCell.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/SurfaceDuo/TwoPanePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/SurfaceDuo/TwoPanePage.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/SurfaceDuo/TwoPanePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/SurfaceDuo/TwoPanePage.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/GridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/GridView.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/GridView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/GridView.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/HomeView.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/HomeView.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/ListView.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/ListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/ListView.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/SillyBottomTabsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/SillyBottomTabsPage.xaml -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/SillyBottomTabsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/Presentation/Views/TabsLayout/SillyBottomTabsPage.xaml.cs -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/SillyCompany.Mobile.Practices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/SillyCompany.Mobile.Practices.csproj -------------------------------------------------------------------------------- /SillyCompany.Mobile.Practices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/SillyCompany.Mobile.Practices/packages.config -------------------------------------------------------------------------------- /StyleCopRules.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/StyleCopRules.ruleset -------------------------------------------------------------------------------- /__Docs__/android_silly_app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/__Docs__/android_silly_app.gif -------------------------------------------------------------------------------- /__Docs__/bottom_tabs_uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/__Docs__/bottom_tabs_uwp.png -------------------------------------------------------------------------------- /__Docs__/dark_mode_ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/__Docs__/dark_mode_ios.gif -------------------------------------------------------------------------------- /__Docs__/dynamic_themes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/__Docs__/dynamic_themes.gif -------------------------------------------------------------------------------- /__Docs__/ios_segmented_neu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Xamarin-Forms-Practices/HEAD/__Docs__/ios_segmented_neu.png --------------------------------------------------------------------------------