gitextract_ubojr8mt/ ├── .gitignore ├── README.md ├── TheLittleThingsPlayground/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Converters/ │ │ └── StringToColorConverter.cs │ ├── Extensions/ │ │ └── ColorExtensions.cs │ ├── Models/ │ │ └── Item.cs │ ├── Services/ │ │ ├── IDataStore.cs │ │ └── MockDataStore.cs │ ├── Styles/ │ │ └── Global.css │ ├── TheLittleThingsPlayground.csproj │ ├── Utils/ │ │ ├── ImageResourceExtension.cs │ │ └── XamlUtil.cs │ ├── ViewModels/ │ │ ├── AboutViewModel.cs │ │ ├── BaseViewModel.cs │ │ ├── ColorViewModel.cs │ │ └── DemoViewModel.cs │ └── Views/ │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── MasterPageLayout.xaml │ ├── MasterPageLayout.xaml.cs │ ├── ModalPage.xaml │ ├── ModalPage.xaml.cs │ ├── Previewer.xaml │ ├── Previewer.xaml.cs │ ├── SimpleWebView.xaml │ ├── SimpleWebView.xaml.cs │ ├── ThreeFivePage.xaml │ ├── ThreeFivePage.xaml.cs │ ├── ThreeFourPage.xaml │ ├── ThreeFourPage.xaml.cs │ ├── ThreeOnePage.xaml │ ├── ThreeOnePage.xaml.cs │ ├── ThreeSixPage.xaml │ ├── ThreeSixPage.xaml.cs │ ├── ThreeThreePage.xaml │ ├── ThreeThreePage.xaml.cs │ ├── ThreeTwoPage.xaml │ ├── ThreeTwoPage.xaml.cs │ ├── ViewSourcePage.xaml │ ├── ViewSourcePage.xaml.cs │ └── Visual/ │ ├── ActivityIndicatorsPage.xaml │ ├── ActivityIndicatorsPage.xaml.cs │ ├── ButtonsPage.xaml │ ├── ButtonsPage.xaml.cs │ ├── CardsPage.xaml │ ├── CardsPage.xaml.cs │ ├── CustomRenderers.xaml │ ├── CustomRenderers.xaml.cs │ ├── Editors.xaml │ ├── Editors.xaml.cs │ ├── EntriesPage.xaml │ ├── EntriesPage.xaml.cs │ ├── Pickers.xaml │ ├── Pickers.xaml.cs │ ├── ProgressPage.xaml │ ├── ProgressPage.xaml.cs │ ├── SlidersPage.xaml │ ├── SlidersPage.xaml.cs │ ├── SteppersPage.xaml │ └── SteppersPage.xaml.cs ├── TheLittleThingsPlayground.Android/ │ ├── Assets/ │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties/ │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Renderers/ │ │ └── DroidTabbedPageRenderer.cs │ ├── Resources/ │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout/ │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ ├── mipmap-anydpi-v26/ │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ └── values/ │ │ ├── colors.xml │ │ └── styles.xml │ └── TheLittleThingsPlayground.Android.csproj ├── TheLittleThingsPlayground.UWP/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── TheLittleThingsPlayground.UWP.csproj │ └── TheLittleThingsPlayground.UWP_TemporaryKey.pfx ├── TheLittleThingsPlayground.iOS/ │ ├── AppDelegate.cs │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ ├── Contents.json │ │ └── Media.xcassets/ │ │ ├── Contents.json │ │ └── Image.imageset/ │ │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Resources/ │ │ └── LaunchScreen.storyboard │ └── TheLittleThingsPlayground.iOS.csproj └── TheLittleThingsPlayground.sln