gitextract_8oao00ol/ ├── .gitignore ├── Iconize/ │ ├── Fonts/ │ │ ├── Entypo+/ │ │ │ ├── EntypoPlusCollection.cs │ │ │ ├── Plugin.Iconize.EntypoPlus.Droid/ │ │ │ │ ├── EntypoPlusModule.cs │ │ │ │ ├── Plugin.Iconize.EntypoPlus.Droid.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources/ │ │ │ │ │ └── Resource.Designer.cs │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.EntypoPlus.UWP/ │ │ │ │ ├── EntypoPlusModule.cs │ │ │ │ ├── Plugin.Iconize.EntypoPlus.UWP.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── Plugin.Iconize.EntypoPlus.UWP.rd.xml │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.EntypoPlus.iOS/ │ │ │ │ ├── EntypoPlusModule.cs │ │ │ │ ├── Plugin.Iconize.EntypoPlus.iOS.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── project.json │ │ │ └── README.md │ │ ├── FontAwesome/ │ │ │ ├── FontAwesomeCollection.cs │ │ │ ├── Plugin.Iconize.FontAwesome.Droid/ │ │ │ │ ├── FontAwesomeModule.cs │ │ │ │ ├── Plugin.Iconize.FontAwesome.Droid.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources/ │ │ │ │ │ └── Resource.Designer.cs │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.FontAwesome.UWP/ │ │ │ │ ├── FontAwesomeModule.cs │ │ │ │ ├── Plugin.Iconize.FontAwesome.UWP.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── Plugin.Iconize.FontAwesome.UWP.rd.xml │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.FontAwesome.iOS/ │ │ │ │ ├── FontAwesomeModule.cs │ │ │ │ ├── Plugin.Iconize.FontAwesome.iOS.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── project.json │ │ │ └── README.md │ │ ├── Ionicons/ │ │ │ ├── IoniconsCollection.cs │ │ │ ├── Plugin.Iconize.Ionicons.Droid/ │ │ │ │ ├── IoniconsModule.cs │ │ │ │ ├── Plugin.Iconize.Ionicons.Droid.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources/ │ │ │ │ │ └── Resource.Designer.cs │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.Ionicons.UWP/ │ │ │ │ ├── IoniconsModule.cs │ │ │ │ ├── Plugin.Iconize.Ionicons.UWP.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── Plugin.Iconize.Ionicons.UWP.rd.xml │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.Ionicons.iOS/ │ │ │ │ ├── IoniconsModule.cs │ │ │ │ ├── Plugin.Iconize.Ionicons.iOS.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── project.json │ │ │ └── README.md │ │ ├── Material/ │ │ │ ├── MaterialCollection.cs │ │ │ ├── Plugin.Iconize.Material.Droid/ │ │ │ │ ├── MaterialModule.cs │ │ │ │ ├── Plugin.Iconize.Material.Droid.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources/ │ │ │ │ │ └── Resource.Designer.cs │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.Material.UWP/ │ │ │ │ ├── MaterialModule.cs │ │ │ │ ├── Plugin.Iconize.Material.UWP.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── Plugin.Iconize.Material.Windows.rd.xml │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.Material.iOS/ │ │ │ │ ├── MaterialModule.cs │ │ │ │ ├── Plugin.Iconize.Material.iOS.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── project.json │ │ │ └── README.md │ │ ├── Meteocons/ │ │ │ ├── MeteoconsCollection.cs │ │ │ ├── Plugin.Iconize.Meteocons.Droid/ │ │ │ │ ├── MeteoconsModule.cs │ │ │ │ ├── Plugin.Iconize.Meteocons.Droid.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources/ │ │ │ │ │ └── Resource.Designer.cs │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.Meteocons.UWP/ │ │ │ │ ├── MeteoconsModule.cs │ │ │ │ ├── Plugin.Iconize.Meteocons.UWP.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── Plugin.Iconize.Meteocons.UWP.rd.xml │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.Meteocons.iOS/ │ │ │ │ ├── MeteoconsModule.cs │ │ │ │ ├── Plugin.Iconize.Meteocons.iOS.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── project.json │ │ │ └── README.md │ │ ├── SimpleLineIcons/ │ │ │ ├── Plugin.Iconize.SimpleLineIcons.Droid/ │ │ │ │ ├── Plugin.Iconize.SimpleLineIcons.Droid.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources/ │ │ │ │ │ └── Resource.Designer.cs │ │ │ │ ├── SimpleLineIconsModule.cs │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.SimpleLineIcons.UWP/ │ │ │ │ ├── Plugin.Iconize.SimpleLineIcons.UWP.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── Plugin.Iconize.SimpleLineIcons.UWP.rd.xml │ │ │ │ ├── SimpleLineIconsModule.cs │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.SimpleLineIcons.iOS/ │ │ │ │ ├── Plugin.Iconize.SimpleLineIcons.iOS.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── SimpleLineIconsModule.cs │ │ │ │ └── project.json │ │ │ ├── README.md │ │ │ └── SimpleLineIconsCollection.cs │ │ ├── Typicons/ │ │ │ ├── Plugin.Iconize.Typicons.Droid/ │ │ │ │ ├── Plugin.Iconize.Typicons.Droid.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources/ │ │ │ │ │ └── Resource.Designer.cs │ │ │ │ ├── TypiconsModule.cs │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.Typicons.UWP/ │ │ │ │ ├── Plugin.Iconize.Typicons.UWP.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── Plugin.Iconize.Typicons.UWP.rd.xml │ │ │ │ ├── TypiconsModule.cs │ │ │ │ └── project.json │ │ │ ├── Plugin.Iconize.Typicons.iOS/ │ │ │ │ ├── Plugin.Iconize.Typicons.iOS.csproj │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── TypiconsModule.cs │ │ │ │ └── project.json │ │ │ ├── README.md │ │ │ └── TypiconsCollection.cs │ │ └── WeatherIcons/ │ │ ├── Plugin.Iconize.WeatherIcons.Droid/ │ │ │ ├── Plugin.Iconize.WeatherIcons.Droid.csproj │ │ │ ├── Properties/ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources/ │ │ │ │ └── Resource.Designer.cs │ │ │ ├── WeatherIconsModule.cs │ │ │ └── project.json │ │ ├── Plugin.Iconize.WeatherIcons.UWP/ │ │ │ ├── Plugin.Iconize.WeatherIcons.UWP.csproj │ │ │ ├── Properties/ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Plugin.Iconize.WeatherIcons.UWP.rd.xml │ │ │ ├── WeatherIconsModule.cs │ │ │ └── project.json │ │ ├── Plugin.Iconize.WeatherIcons.iOS/ │ │ │ ├── Plugin.Iconize.WeatherIcons.iOS.csproj │ │ │ ├── Properties/ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── WeatherIconsModule.cs │ │ │ └── project.json │ │ ├── README.md │ │ └── WeatherIconsCollection.cs │ ├── FormsPlugin.Iconize/ │ │ ├── FormsPlugin.Iconize.csproj │ │ ├── IconButton.cs │ │ ├── IconCarouselPage.cs │ │ ├── IconImage.cs │ │ ├── IconLabel.cs │ │ ├── IconNavigationPage.cs │ │ ├── IconTabbedPage.cs │ │ ├── IconToolbarItem.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── ToolbarItemExtensions.cs │ │ └── project.json │ ├── FormsPlugin.Iconize.Droid/ │ │ ├── FormsPlugin.Iconize.Droid.csproj │ │ ├── IconButtonRenderer.cs │ │ ├── IconControls.cs │ │ ├── IconImageRenderer.cs │ │ ├── IconLabelRenderer.cs │ │ ├── IconNavigationRenderer.cs │ │ ├── IconTabbedPageRenderer.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ └── Resource.Designer.cs │ │ ├── ToolbarItemExtensions.cs │ │ └── project.json │ ├── FormsPlugin.Iconize.UWP/ │ │ ├── ColorExtensions.cs │ │ ├── FormsPlugin.Iconize.UWP.csproj │ │ ├── IconButtonRenderer.cs │ │ ├── IconControls.cs │ │ ├── IconImageRenderer.cs │ │ ├── IconLabelRenderer.cs │ │ ├── IconNavigationRenderer.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── FormsPlugin.Iconize.Windows.rd.xml │ │ └── project.json │ ├── FormsPlugin.Iconize.iOS/ │ │ ├── FormsPlugin.Iconize.iOS.csproj │ │ ├── IconButtonRenderer.cs │ │ ├── IconControls.cs │ │ ├── IconImageRenderer.cs │ │ ├── IconLabelRenderer.cs │ │ ├── IconNavigationRenderer.cs │ │ ├── IconTabbedPageRenderer.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── ToolbarItemExtensions.cs │ │ └── project.json │ ├── Iconize.sln │ ├── LICENSE │ ├── NuGet/ │ │ ├── Xam.FormsPlugin.Iconize.nuspec │ │ ├── Xam.Plugin.Iconize.EntypoPlus.nuspec │ │ ├── Xam.Plugin.Iconize.FontAwesome.nuspec │ │ ├── Xam.Plugin.Iconize.Ionicons.nuspec │ │ ├── Xam.Plugin.Iconize.Material.nuspec │ │ ├── Xam.Plugin.Iconize.Meteocons.nuspec │ │ ├── Xam.Plugin.Iconize.SimpleLineIcons.nuspec │ │ ├── Xam.Plugin.Iconize.Typicons.nuspec │ │ ├── Xam.Plugin.Iconize.WeatherIcons.nuspec │ │ └── Xam.Plugin.Iconize.nuspec │ ├── Plugin.Iconize/ │ │ ├── Extensions.cs │ │ ├── IIcon.cs │ │ ├── IIconModule.cs │ │ ├── Icon.cs │ │ ├── IconModule.cs │ │ ├── Iconize.cs │ │ ├── Plugin.Iconize.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── Plugin.Iconize.Droid/ │ │ ├── Controls/ │ │ │ ├── IconButton.cs │ │ │ ├── IconDrawable.cs │ │ │ ├── IconTextView.cs │ │ │ └── IconToggleButton.cs │ │ ├── CustomTypefaceSpan.cs │ │ ├── HasOnViewAttachListenerDelegate.cs │ │ ├── IconizeExtensions.cs │ │ ├── MenuClickListener.cs │ │ ├── ParsingUtil.cs │ │ ├── Plugin.Iconize.Droid.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ └── Resource.Designer.cs │ │ └── project.json │ ├── Plugin.Iconize.UWP/ │ │ ├── IconizeExtensions.cs │ │ ├── ParsingUtil.cs │ │ ├── Plugin.Iconize.UWP.csproj │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Plugin.Iconize.Windows.rd.xml │ │ └── project.json │ ├── Plugin.Iconize.iOS/ │ │ ├── Controls/ │ │ │ ├── IconButton.cs │ │ │ └── IconLabel.cs │ │ ├── CustomAttributedString.cs │ │ ├── IconizeExtensions.cs │ │ ├── ParsingUtil.cs │ │ ├── Plugin.Iconize.iOS.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── README.md │ ├── Samples/ │ │ ├── Iconize.FormsSample/ │ │ │ ├── App.cs │ │ │ ├── Iconize.FormsSample.csproj │ │ │ ├── ModuleWrapper.cs │ │ │ ├── Page1.xaml │ │ │ ├── Page1.xaml.cs │ │ │ ├── Properties/ │ │ │ │ └── AssemblyInfo.cs │ │ │ └── project.json │ │ ├── Iconize.FormsSample.Droid/ │ │ │ ├── Assets/ │ │ │ │ └── AboutAssets.txt │ │ │ ├── Iconize.FormsSample.Droid.csproj │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ ├── Properties/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources/ │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.Designer.cs │ │ │ │ ├── layout/ │ │ │ │ │ ├── tabs.axml │ │ │ │ │ └── toolbar.axml │ │ │ │ ├── values/ │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── style.xml │ │ │ │ └── values-v21/ │ │ │ │ └── style.xml │ │ │ └── project.json │ │ ├── Iconize.FormsSample.UWP/ │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Iconize.FormsSample.UWP.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties/ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ └── project.json │ │ ├── Iconize.FormsSample.iOS/ │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Iconize.FormsSample.iOS.csproj │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Properties/ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources/ │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── iTunesArtwork │ │ │ ├── iTunesArtwork@2x │ │ │ └── project.json │ │ ├── Iconize.Sample.Droid/ │ │ │ ├── Assets/ │ │ │ │ └── AboutAssets.txt │ │ │ ├── FontIconsViewPagerAdapter.cs │ │ │ ├── IconAdapter.cs │ │ │ ├── Iconize.Sample.Droid.csproj │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ ├── Properties/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources/ │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.Designer.cs │ │ │ │ ├── layout/ │ │ │ │ │ ├── ItemFont.axml │ │ │ │ │ ├── ItemIcon.axml │ │ │ │ │ └── Main.axml │ │ │ │ ├── values/ │ │ │ │ │ ├── Colors.xml │ │ │ │ │ ├── Dimen.xml │ │ │ │ │ ├── Strings.xml │ │ │ │ │ └── Styles.xml │ │ │ │ └── values-v21/ │ │ │ │ └── Styles.xml │ │ │ ├── Utils/ │ │ │ │ └── AndroidUtils.cs │ │ │ └── project.json │ │ ├── Iconize.Sample.UWP/ │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Iconize.Sample.UWP.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties/ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ └── project.json │ │ ├── Iconize.Sample.iOS/ │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Iconize.Sample.iOS.csproj │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MainController.cs │ │ │ ├── Properties/ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources/ │ │ │ │ └── LaunchScreen.xib │ │ │ └── project.json │ │ └── IconizeSamples.sln │ ├── appveyor.yml │ ├── build.cake │ ├── build.ps1 │ └── install-android-sdk.ps1 ├── LICENSE.md ├── MaterialIcons/ │ ├── MaterialIcons.FormsPlugin.Abstractions/ │ │ ├── IconButton.cs │ │ ├── IconLabel.cs │ │ ├── MaterialIcons.FormsPlugin.Abstractions.csproj │ │ ├── MaterialIcons.cs │ │ ├── MaterialIconsConverter.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── MaterialIcons.FormsPlugin.Droid/ │ │ ├── IconButtonRenderer.cs │ │ ├── IconLabelRenderer.cs │ │ ├── MaterialIconControls.cs │ │ ├── MaterialIcons.FormsPlugin.Droid.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ └── Resource.Designer.cs │ │ └── packages.config │ ├── MaterialIcons.FormsPlugin.WinPhone/ │ │ ├── IconButtonRenderer.cs │ │ ├── IconLabelRenderer.cs │ │ ├── MaterialIconControls.cs │ │ ├── MaterialIcons.FormsPlugin.WinPhone.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── MaterialIcons.FormsPlugin.iOS/ │ │ ├── IconButtonRenderer.cs │ │ ├── IconLabelRenderer.cs │ │ ├── MaterialIconControls.cs │ │ ├── MaterialIcons.FormsPlugin.iOS.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── MaterialIcons.FormsPlugin.nuspec │ ├── MaterialIcons.sln │ ├── README.md │ └── Samples/ │ ├── MaterialIcons.Sample/ │ │ ├── App.cs │ │ ├── GettingStarted.Xamarin │ │ ├── MaterialIcons.Sample.csproj │ │ ├── Page1.xaml │ │ ├── Page1.xaml.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── MaterialIcons.Sample.Droid/ │ │ ├── Assets/ │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── MaterialIcons.Sample.Droid.csproj │ │ ├── Properties/ │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── layout/ │ │ │ │ ├── tabs.axml │ │ │ │ └── toolbar.axml │ │ │ ├── values/ │ │ │ │ ├── colors.xml │ │ │ │ └── style.xml │ │ │ └── values-v21/ │ │ │ └── style.xml │ │ └── packages.config │ ├── MaterialIcons.Sample.WinPhone/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MaterialIcons.Sample.WinPhone.csproj │ │ ├── Properties/ │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources/ │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ └── packages.config │ └── MaterialIcons.Sample.iOS/ │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── MaterialIcons.Sample.iOS.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Resources/ │ │ └── LaunchScreen.storyboard │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config └── README.md