├── .Xamarin.Forms.Android.slnf ├── .Xamarin.Forms.UAP.slnf ├── .Xamarin.Forms.iOS.slnf ├── .config └── dotnet-tools.json ├── .dependabot └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitconfig ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── spec.md ├── PULL_REQUEST_TEMPLATE.md └── repro.md ├── .gitignore ├── .nuspec ├── Xamarin.Forms.AppLinks.nuspec ├── Xamarin.Forms.Debug.targets ├── Xamarin.Forms.DefaultItems.props ├── Xamarin.Forms.DefaultItems.targets ├── Xamarin.Forms.DualScreen.nuspec ├── Xamarin.Forms.Maps.GTK.nuspec ├── Xamarin.Forms.Maps.WPF.nuspec ├── Xamarin.Forms.Maps.nuspec ├── Xamarin.Forms.Platform.GTK.nuspec ├── Xamarin.Forms.Platform.WPF.nuspec ├── Xamarin.Forms.Visual.Material.nuspec ├── Xamarin.Forms.Visual.Material.targets ├── Xamarin.Forms.nuspec ├── Xamarin.Forms.props ├── Xamarin.Forms.targets ├── _._ └── proguard.cfg ├── .vsts-ci.yml ├── AndroidNative ├── AndroidNative.iml ├── FormsViewGroup │ ├── FormsViewGroup.iml │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── xamarin │ │ │ └── forms │ │ │ └── platform │ │ │ └── android │ │ │ └── FormsViewGroup.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── HOWTOBUILD ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Assets ├── banner.png └── xamarin_128x128.png ├── ControlGallery.Build.props ├── DevopsNuget.config ├── Directory.Build.props ├── Directory.Build.targets ├── DualScreen ├── Directory.Build.props ├── DualScreen.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── DualScreen.Android.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── mipmap-anydpi-v26 │ │ ├── icon.xml │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml ├── DualScreen.Mac │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-128.png │ │ │ ├── AppIcon-128@2x.png │ │ │ ├── AppIcon-16.png │ │ │ ├── AppIcon-16@2x.png │ │ │ ├── AppIcon-256.png │ │ │ ├── AppIcon-256@2x.png │ │ │ ├── AppIcon-32.png │ │ │ ├── AppIcon-32@2x.png │ │ │ ├── AppIcon-512.png │ │ │ ├── AppIcon-512@2x.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── DualScreen.Mac.csproj │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Main.storyboard │ ├── ViewController.cs │ └── ViewController.designer.cs ├── DualScreen.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── DualScreen.UWP.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml ├── DualScreen.WPF │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── DualScreen.WPF.csproj │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs ├── DualScreen.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── DualScreen.iOS.csproj │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard └── DualScreen │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── CompanionPane │ ├── CompanionPane.xaml │ └── CompanionPane.xaml.cs │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── DualScreen.csproj │ ├── DualScreenInfoGallery.xaml │ ├── DualScreenInfoGallery.xaml.cs │ ├── DualView │ ├── DualViewListPage.xaml │ ├── DualViewListPage.xaml.cs │ ├── DualViewMap.xaml │ ├── DualViewMap.xaml.cs │ ├── DualViewMapPage.xaml │ ├── DualViewMapPage.xaml.cs │ └── MapItem.cs │ ├── ExtendCanvas.xaml │ ├── ExtendCanvas.xaml.cs │ ├── GridUsingDualScreenInfo.xaml │ ├── GridUsingDualScreenInfo.xaml.cs │ ├── MasterDetail │ ├── Details.xaml │ ├── Details.xaml.cs │ ├── DetailsPage.xaml │ ├── DetailsPage.xaml.cs │ ├── Master.xaml │ ├── Master.xaml.cs │ ├── MasterDetail.xaml │ ├── MasterDetail.xaml.cs │ └── MasterDetailsItem.cs │ ├── NestedTwoPaneViewSplitAcrossHinge.xaml │ ├── NestedTwoPaneViewSplitAcrossHinge.xaml.cs │ ├── TwoPage.xaml │ ├── TwoPage.xaml.cs │ ├── TwoPanePropertiesGallery.xaml │ ├── TwoPanePropertiesGallery.xaml.cs │ ├── TwoPaneViewBonanza.xaml │ ├── TwoPaneViewBonanza.xaml.cs │ └── TwoPaneViewGallery.cs ├── EmbeddingTestBeds ├── Embedding.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── Directory.Build.targets │ ├── Embedding.Droid.csproj │ ├── GettingStarted.Xamarin │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AndroidManifest30.xml │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ ├── Main.axml │ │ │ ├── MainFragment.axml │ │ │ ├── Second.axml │ │ │ └── SecondFragment.axml │ │ └── values │ │ │ └── Strings.xml │ ├── SecondActivity.cs │ └── environment.txt ├── Embedding.Tizen │ ├── App.cs │ ├── Embedding.Tizen.csproj │ ├── shared │ │ └── res │ │ │ └── Embedding.Tizen.png │ └── tizen-manifest.xml ├── Embedding.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 │ ├── Embedding.UWP.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Page2.xaml │ ├── Page2.xaml.cs │ └── Properties │ │ └── Default.rd.xml ├── Embedding.XF │ ├── AlertsAndActionSheets.xaml │ ├── AlertsAndActionSheets.xaml.cs │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Embedding.XF.csproj │ ├── Hello.xaml │ ├── Hello.xaml.cs │ ├── OpenUri.xaml │ ├── OpenUri.xaml.cs │ ├── Page3.xaml │ ├── Page3.xaml.cs │ ├── Page4.xaml │ ├── Page4.xaml.cs │ ├── WebViewExample.xaml │ └── WebViewExample.xaml.cs ├── Embedding.iOS │ ├── AppDelegate.cs │ ├── Embedding.iOS.csproj │ ├── Entitlements.plist │ ├── GettingStarted.Xamarin │ ├── Info.plist │ ├── Main.cs │ ├── Main.storyboard │ ├── Resources │ │ └── LaunchScreen.xib │ ├── ViewController.cs │ └── ViewController.designer.cs └── EmbeddingTestBeds.sln ├── Environment.Build.props ├── Git.Build.targets ├── GitInfo.txt ├── LICENSE ├── Makefile ├── NuGet.config ├── Nuget.targets ├── Nuget └── .gitignore ├── README.md ├── SECURITY.md ├── SampleImports ├── Android.Build.targets ├── Directory.Build.props ├── Directory.Build.targets ├── Mac.Build.targets ├── Netstandard.Build.props ├── Netstandard.Build.targets ├── Nuget.Build.targets ├── UWP.Build.targets ├── WPF.Build.targets └── iOS.Build.targets ├── SourceLink.Build.props ├── Stubs ├── Xamarin.Forms.Platform.Android │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Xamarin.Forms.Platform.Android (Forwarders).csproj │ └── global.json ├── Xamarin.Forms.Platform.Tizen │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Xamarin.Forms.Platform.Tizen (Forwarders).csproj ├── Xamarin.Forms.Platform.cs └── Xamarin.Forms.Platform.iOS │ ├── Properties │ └── AssemblyInfo.cs │ └── Xamarin.Forms.Platform.iOS (Forwarders).csproj ├── UWP.Build.props ├── UWP.Build.targets ├── Uno.Xamarin.Forms.Platform.sln ├── Version.targets ├── Xamarin.Forms.Build.Tasks ├── BindablePropertyReferenceExtensions.cs ├── BuildException.cs ├── CompiledConverters │ ├── BindablePropertyConverter.cs │ ├── BoundsTypeConverter.cs │ ├── ColorTypeConverter.cs │ ├── ConstraintTypeConverter.cs │ ├── EasingTypeConverter.cs │ ├── ICompiledTypeConverter.cs │ ├── LayoutOptionsConverter.cs │ ├── ListStringTypeConverter.cs │ ├── RDSourceTypeConverter.cs │ ├── RectangleTypeConverter.cs │ ├── ThicknessTypeConverter.cs │ ├── TypeTypeConverter.cs │ └── UriTypeConverter.cs ├── CompiledMarkupExtensions │ ├── ArrayExtension.cs │ ├── DataTemplateExtension.cs │ ├── ICompiledMarkupExtension.cs │ ├── NullExtension.cs │ ├── StaticExtension.cs │ └── TypeExtension.cs ├── CompiledValueProviders │ ├── ICompiledValueProvider.cs │ ├── PassthroughValueProvider.cs │ ├── SetterValueProvider.cs │ └── StyleSheetProvider.cs ├── CreateObjectVisitor.cs ├── CssGTask.cs ├── CssGenerator.cs ├── DebugXamlCTask.cs ├── ErrorMessages.Designer.cs ├── ErrorMessages.resx ├── ExpandMarkupsVisitor.cs ├── FieldReferenceExtensions.cs ├── ILContext.cs ├── ILProcessorExtensions.cs ├── ILRootNode.cs ├── MethodBodyExtensions.cs ├── MethodDefinitionExtensions.cs ├── MethodReferenceExtensions.cs ├── ModuleDefinitionExtensions.cs ├── NodeILExtensions.cs ├── PerformanceProvider.cs ├── Properties │ └── AssemblyInfo.cs ├── SetFieldVisitor.cs ├── SetNamescopesAndRegisterNamesVisitor.cs ├── SetPropertiesVisitor.cs ├── SetResourcesVisitor.cs ├── TypeDefinitionExtensions.cs ├── TypeReferenceExtensions.cs ├── VariableDefinitionExtensions.cs ├── Xamarin.Forms.Build.Tasks.csproj ├── XamlCAssemblyResolver.cs ├── XamlCTask.cs ├── XamlGTask.cs ├── XamlGenerator.cs ├── XamlTask.cs ├── XmlTypeExtensions.cs └── xlf │ ├── ErrorMessages.cs.xlf │ ├── ErrorMessages.de.xlf │ ├── ErrorMessages.es.xlf │ ├── ErrorMessages.fr.xlf │ ├── ErrorMessages.it.xlf │ ├── ErrorMessages.ja.xlf │ ├── ErrorMessages.ko.xlf │ ├── ErrorMessages.pl.xlf │ ├── ErrorMessages.pt-BR.xlf │ ├── ErrorMessages.ru.xlf │ ├── ErrorMessages.tr.xlf │ ├── ErrorMessages.zh-Hans.xlf │ └── ErrorMessages.zh-Hant.xlf ├── Xamarin.Forms.ControlGallery.Android ├── Activity1.cs ├── ApiLabelRenderer.cs ├── Assets │ ├── WebImages │ │ └── XamarinLogo.png │ ├── default.css │ ├── fonts │ │ ├── icons.xml │ │ └── ionicons.ttf │ ├── googlemap.html │ ├── googlemapsearch.html │ ├── local.html │ └── test.jpg ├── AttachedStateEffectRenderer.cs ├── BorderEffect.cs ├── BrokenImageSourceHandler.cs ├── BrokenNativeControl.cs ├── CacheService.cs ├── ColorPicker.cs ├── ContentDescriptionEffectRenderer.cs ├── CustomRenderers.cs ├── Directory.Build.targets ├── DisposeLabelRenderer.cs ├── DisposePageRenderer.cs ├── DrawableExtensions.cs ├── Environment.txt ├── FormsAppCompatActivity.cs ├── FormsApplicationActivity.cs ├── Issue10182Activity.cs ├── Issue7249SwitchRenderer.cs ├── LinkDescription.xml ├── MainApplication.cs ├── MultiWindowService.cs ├── Nuget.Build.targets ├── PerformanceTrackerRenderer.cs ├── PlatformSpecificCoreGalleryFactory.cs ├── PreApplicationClassActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── RegistrarValidationService.cs ├── Resources │ ├── AboutResources.txt │ ├── anim │ │ ├── enter_from_left.xml │ │ ├── enter_from_right.xml │ │ ├── exit_to_left.xml │ │ └── exit_to_right.xml │ ├── drawable │ │ ├── CustomSelector.xml │ │ ├── CustomSelector2.xml │ │ ├── FlowerBuds.jpg │ │ ├── Fruits.jpg │ │ ├── GifOne.gif │ │ ├── GifTwo.gif │ │ ├── Icon.png │ │ ├── Legumes.jpg │ │ ├── Vegetables.jpg │ │ ├── bank.png │ │ ├── bell.png │ │ ├── books.png │ │ ├── booksflyout.png │ │ ├── button_add.png │ │ ├── calculator.png │ │ ├── card.png │ │ ├── cardBackground.png │ │ ├── caret_r.png │ │ ├── cartman.xml │ │ ├── coffee.png │ │ ├── coffee2.png │ │ ├── cover1.jpg │ │ ├── cover1small.jpg │ │ ├── crimson.jpg │ │ ├── crimsonsmall.jpg │ │ ├── error.xml │ │ ├── film.png │ │ ├── filmflyout.png │ │ ├── games.png │ │ ├── gamesflyout.png │ │ ├── gear.png │ │ ├── grid.png │ │ ├── headphone.png │ │ ├── headphoneflyout.png │ │ ├── heart.xml │ │ ├── home.png │ │ ├── homeflyout.png │ │ ├── icon_bookmark.png │ │ ├── icon_search.png │ │ ├── invalidimage.jpg │ │ ├── jet.png │ │ ├── loop.png │ │ ├── menuIcon.png │ │ ├── mic.png │ │ ├── newspaper.png │ │ ├── newspaperflyout.png │ │ ├── oasis.jpg │ │ ├── oasissmall.jpg │ │ ├── person.png │ │ ├── photo.jpg │ │ ├── rb_checked.png │ │ ├── rb_unchecked.png │ │ ├── red_button.xml │ │ ├── seth.png │ │ ├── star.png │ │ ├── synchronize.xml │ │ ├── synchronize_disabled.xml │ │ ├── synchronize_enabled.png │ │ ├── test.jpg │ │ ├── toolbar_close.png │ │ ├── xamarinlogo.png │ │ └── xamarinstore.jpg │ ├── layout │ │ ├── Layout38989.axml │ │ ├── NativeAndroidCell.axml │ │ ├── NativeAndroidListViewCell.axml │ │ ├── Tabbar.axml │ │ └── Toolbar.axml │ └── values │ │ ├── Colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── RippleEffect.cs ├── SampleNativeControl.cs ├── StaggeredCollectionViewRenderer.cs ├── TestCloudService.cs ├── Tests │ ├── PlatformTestSettings.cs │ └── TestingPlatformService.cs ├── Xamarin.Forms.ControlGallery.Android.csproj ├── _10940CustomRenderer.cs ├── _12484CustomRenderer.cs ├── _1909CustomRenderer.cs ├── _2489CustomRenderer.cs ├── _38989CustomRenderer.cs ├── _50787CustomRenderer.cs ├── _57114CustomRenderer.cs ├── _5724CustomRenderers.cs ├── _5749CustomRenderer.cs ├── _58406EffectRenderer.cs ├── _59457CustomRenderer.cs ├── _60122ImageRenderer.cs ├── _9087CustomRenderer.cs └── app.config ├── Xamarin.Forms.ControlGallery.GTK ├── App.config ├── Assets │ └── ionicons.ttf ├── Icon.png ├── PlatformSpecificCoreGalleryFactory.cs ├── Program.cs ├── RegistrarValidationService.cs ├── SampleNativeControl.cs ├── Xamarin.Forms.ControlGallery.GTK.csproj ├── gtk_back_button.png ├── gtk_hamburguer_button.png ├── ic_share.png ├── ratchet.png ├── ratchet_full.jpg ├── tdl.png └── twitternav.png ├── Xamarin.Forms.ControlGallery.MacOS ├── AppDelegate.cs ├── Assets.xcassets │ ├── AppIcons.appiconset │ │ ├── AppIcon-128.png │ │ ├── AppIcon-128@2x.png │ │ ├── AppIcon-16.png │ │ ├── AppIcon-16@2x.png │ │ ├── AppIcon-256.png │ │ ├── AppIcon-256@2x.png │ │ ├── AppIcon-32.png │ │ ├── AppIcon-32@2x.png │ │ ├── AppIcon-512.png │ │ ├── AppIcon-512@2x.png │ │ └── Contents.json │ └── Contents.json ├── BrokenNativeControl.cs ├── CustomRenderers.cs ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Main.storyboard ├── NativeServices.cs ├── PlatformSpecificCoreGalleryFactory.cs ├── RegistrarValidationService.cs ├── Resources │ └── Fonts │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Regular.ttf │ │ └── ionicons.ttf ├── SampleNativeControl.cs ├── SeparatorMenuItem.cs └── Xamarin.Forms.ControlGallery.MacOS.csproj ├── Xamarin.Forms.ControlGallery.Tizen ├── BorderEffect.cs ├── ControlGallery.Tizen.cs ├── DisposeLabelRenderer.cs ├── DisposePageRenderer.cs ├── PlatformSpecificCoreGalleryFactory.cs ├── RegistrarValidationService.cs ├── SampleNativeControl.cs ├── Xamarin.Forms.ControlGallery.Tizen.csproj ├── res │ ├── FlowerBuds.jpg │ ├── Fruits.jpg │ ├── Icon-Small.png │ ├── Icon.png │ ├── Intranet-icon.png │ ├── Legumes.jpg │ ├── Vegetables.jpg │ ├── about.png │ ├── bank.png │ ├── bell.png │ ├── blog.png │ ├── books.png │ ├── booksflyout.png │ ├── calculator.png │ ├── card.png │ ├── caret_r.png │ ├── coffee.png │ ├── cover1.jpg │ ├── cover1small.jpg │ ├── crimson.jpg │ ├── crimsonsmall.jpg │ ├── facebook.png │ ├── favorite.png │ ├── film.png │ ├── filmflyout.png │ ├── games.png │ ├── gamesflyout.png │ ├── googleplus.png │ ├── grid.png │ ├── headphone.png │ ├── headphoneflyout.png │ ├── hm.png │ ├── hm_full.jpg │ ├── home.png │ ├── homeflyout.png │ ├── ic_pause.png │ ├── ic_play.png │ ├── ic_share.png │ ├── ic_stop.png │ ├── instagram.png │ ├── invalidimage.jpg │ ├── jet.png │ ├── lists.png │ ├── loop.png │ ├── menuIcon.png │ ├── messages.png │ ├── newspaper.png │ ├── newspaperflyout.png │ ├── notifications.png │ ├── oasis.jpg │ ├── oasissmall.jpg │ ├── person.png │ ├── photo.jpg │ ├── profile.png │ ├── ratchet.png │ ├── ratchet_full.jpg │ ├── refresh.png │ ├── reply.png │ ├── retweet.png │ ├── scott.png │ ├── scott159.png │ ├── search.png │ ├── seth.png │ ├── slideout.png │ ├── star.png │ ├── tdl.png │ ├── tdl_full.jpg │ ├── test.jpg │ ├── toolbar_close.png │ ├── tweet.png │ ├── twitter.png │ ├── twitternav.png │ ├── xamarinlogo.png │ └── xamarinstore.jpg ├── shared │ └── res │ │ └── Xamarin.Forms.ControlGallery.Tizen.png └── tizen-manifest.xml ├── Xamarin.Forms.ControlGallery.Uno.Skia.Gtk ├── Assets │ └── Fonts │ │ └── uno-fluentui-assets.ttf ├── Program.cs └── Xamarin.Forms.ControlGallery.Uno.Skia.Gtk.csproj ├── Xamarin.Forms.ControlGallery.Uno.UWP ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Xamarin.Forms.ControlGallery.Uno.UWP.csproj └── Xamarin.Forms.ControlGallery.Uno.UWP_TemporaryKey.pfx ├── Xamarin.Forms.ControlGallery.Uno.Wasm ├── Fonts │ └── winjs-symbols.woff2 ├── LinkerConfig.xml ├── Program.cs ├── Properties │ └── launchSettings.json ├── WasmCSS │ └── Fonts.css ├── WasmScripts │ ├── AppManifest.js │ └── UITestBackdoor.js ├── Xamarin.Forms.ControlGallery.Uno.Wasm.csproj └── wwwroot │ └── web.config ├── Xamarin.Forms.ControlGallery.WPF ├── App.config ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── fontawesome-webfont.ttf │ ├── ionicons.ttf │ └── pickax.ttf ├── GifOne.gif ├── Issue11923.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── PlatformSpecificCoreGalleryFactory.cs ├── Properties │ └── AssemblyInfo.cs ├── RegistrarValidationService.cs ├── Renderers │ └── Issue6693ControlRenderer.cs ├── SampleNativeControl.cs ├── Xamarin.Forms.ControlGallery.WPF.csproj ├── bank.png ├── coffee.png ├── crimson.jpg └── photo.jpg ├── Xamarin.Forms.ControlGallery.WindowsUniversal.Shared ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Fonts │ │ ├── Lobster-Regular.ttf │ │ ├── OFL.txt │ │ └── ionicons.ttf │ ├── Logo.png │ ├── SmallLogo.png │ ├── SplashScreen.png │ ├── StoreLogo.png │ ├── WideLogo.scale-100.png │ └── splashscreen.scale-200.png ├── AttachedStateEffectRenderer.cs ├── BorderEffect.cs ├── BrokenImageSourceHandler.cs ├── BrokenNativeControl.cs ├── CustomRenderers.cs ├── DisposePageRenderer.cs ├── FlowerBuds.jpg ├── FocusEffect.cs ├── Fruits.jpg ├── Legumes.jpg ├── MainPage.xaml ├── MainPage.xaml.cs ├── PlatformSpecificCoreGalleryFactory.cs ├── RegistrarValidationService.cs ├── SampleNativeControl.cs ├── SecondaryWindowService.cs ├── Vegetables.jpg ├── WebImages │ └── XamarinLogo.png ├── Xamarin.Forms.ControlGallery.WindowsUniversal.Shared.projitems ├── Xamarin.Forms.ControlGallery.WindowsUniversal.Shared.shproj ├── Xamarin.Forms.ControlGallery.WindowsUniversal.csproj ├── _2489CustomRenderer.cs ├── _57114Renderer.cs ├── _58406EffectRenderer.cs ├── _60122ImageRenderer.cs ├── bank.png ├── calculator.png ├── coffee.png ├── cover1.jpg ├── cover1small.jpg ├── crimson.jpg ├── crimsonsmall.jpg ├── default.css ├── invalidimage.jpg ├── local.html ├── menuIcon.png ├── oasis.jpg ├── oasissmall.jpg ├── photo.jpg ├── scale-100 │ ├── bell.png │ ├── books.png │ ├── booksflyout.png │ ├── film.png │ ├── filmflyout.png │ ├── games.png │ ├── gamesflyout.png │ ├── gear.png │ ├── grid.png │ ├── headphone.png │ ├── headphoneflyout.png │ ├── home.png │ ├── homeflyout.png │ ├── loop.png │ ├── newspaper.png │ ├── newspaperflyout.png │ ├── person.png │ ├── star-flyout.png │ └── star.png ├── scale-200 │ ├── bell.png │ ├── books.png │ ├── booksflyout.png │ ├── film.png │ ├── filmflyout.png │ ├── games.png │ ├── gamesflyout.png │ ├── gear.png │ ├── grid.png │ ├── headphone.png │ ├── headphoneflyout.png │ ├── home.png │ ├── homeflyout.png │ ├── loop.png │ ├── newspaper.png │ ├── newspaperflyout.png │ ├── person.png │ ├── star-flyout.png │ └── star.png ├── seth.png ├── test.jpg ├── toolbar_close.png ├── xamarinlogo.png └── xamarinstore.jpg ├── Xamarin.Forms.ControlGallery.WindowsUniversal ├── Assets │ ├── Fonts │ │ ├── fa-solid-900.ttf │ │ └── materialdesignicons-webfont.ttf │ └── coverassets1.jpg ├── CustomSwitchRenderer.cs ├── Directory.Build.targets ├── GifOne.gif ├── GifTwo.gif ├── NavPageOverrideRenderer.cs ├── Properties │ ├── AssemblyInfo.cs │ └── default.rd.xml ├── Tests │ ├── PlatformTestSettings.cs │ └── TestingPlatformService.cs ├── Xamarin.Forms.ControlGallery.WindowsUniversal_TemporaryKey.pfx ├── _13109IssueHelper.cs ├── _5886DependencyService.cs ├── _9087CustomRenderer.cs └── cardBackground.png ├── Xamarin.Forms.ControlGallery.iOS ├── ApiLabelRenderer.cs ├── AppDelegate.cs ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon1024.png │ │ ├── Icon120.png │ │ ├── Icon152.png │ │ ├── Icon167.png │ │ ├── Icon180.png │ │ ├── Icon20.png │ │ ├── Icon29.png │ │ ├── Icon40.png │ │ ├── Icon58.png │ │ ├── Icon60.png │ │ ├── Icon76.png │ │ ├── Icon80.png │ │ └── Icon87.png ├── AttachedStateEffectRenderer.cs ├── BrokenImageSourceHandler.cs ├── BrokenNativeControl.cs ├── CustomApplication.cs ├── CustomEffects │ ├── FooEffect.cs │ └── GradientEffect.cs ├── CustomRenderer40251.cs ├── CustomRendererBugzila38731.cs ├── CustomRenderers.cs ├── CustomRenderers │ ├── CustomRenderer.cs │ ├── CustomSearchBarRenderer.cs │ ├── RoundedLabelRenderer.cs │ ├── _12372CustomRenderer.cs │ ├── _9087CustomRenderer.cs │ ├── _9774CustomRenderer.cs │ └── _CustomFrame10348Renderer.cs ├── Directory.Build.targets ├── Entitlements.plist ├── GalleryPages │ └── RegionalLocale.cs ├── GifOne.gif ├── GifTwo.gif ├── Goobuntu-icon.png ├── Images │ ├── FlowerBuds.jpg │ ├── FlowerBuds@2x.jpg │ ├── Fruits.jpg │ ├── Fruits@2x.jpg │ ├── Legumes.jpg │ ├── Legumes@2x.jpg │ ├── Vegetables.jpg │ └── Vegetables@2x.jpg ├── Info.plist ├── Intranet-icon.png ├── LinkDescription.xml ├── Main.cs ├── PerformanceTrackerRenderer.cs ├── PlatformSpecificCoreGalleryFactory.cs ├── Properties │ └── AssemblyInfo.cs ├── RegistrarValidationService.cs ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── FlowerBuds.jpg │ ├── Fonts │ │ └── fa-solid-900.ttf │ ├── Fruits.jpg │ ├── LaunchScreen.storyboard │ ├── Legumes.jpg │ ├── Vegetables.jpg │ ├── about.png │ ├── about@2x.png │ ├── bell.png │ ├── bell@2x.png │ ├── blog.png │ ├── blog@2x.png │ ├── books.png │ ├── books@2x.png │ ├── booksflyout.png │ ├── booksflyout@2x.png │ ├── button_add@2x.png │ ├── card.png │ ├── card@2x.png │ ├── cardBackground@2x.png │ ├── facebook.png │ ├── facebook@2x.png │ ├── favorite.png │ ├── film.png │ ├── film@2x.png │ ├── filmflyout.png │ ├── filmflyout@2x.png │ ├── games.png │ ├── games@2x.png │ ├── gamesflyout.png │ ├── gamesflyout@2x.png │ ├── gear.png │ ├── gear@2x.png │ ├── googleplus.png │ ├── googleplus@2x.png │ ├── grid.png │ ├── grid@2x.png │ ├── headphone.png │ ├── headphone@2x.png │ ├── headphoneflyout.png │ ├── headphoneflyout@2x.png │ ├── hm.png │ ├── hm@2x.png │ ├── hm_full.jpg │ ├── home.png │ ├── home@2x.png │ ├── homeflyout.png │ ├── homeflyout@2x.png │ ├── ic_pause.png │ ├── ic_pause@2x.png │ ├── ic_play.png │ ├── ic_play@2x.png │ ├── ic_share.png │ ├── ic_share@2x.png │ ├── ic_stop.png │ ├── ic_stop@2x.png │ ├── icon_bookmark@2x.png │ ├── icon_search@2x.png │ ├── instagram.png │ ├── instagram@2x.png │ ├── invalidimage.jpg │ ├── jet.png │ ├── jet@2x.png │ ├── lists.png │ ├── loop.png │ ├── loop@2x.png │ ├── messages.png │ ├── mic.png │ ├── newspaper.png │ ├── newspaper@2x.png │ ├── newspaperflyout.png │ ├── newspaperflyout@2x.png │ ├── notifications.png │ ├── person.png │ ├── person@2x.png │ ├── photo.jpg │ ├── profile.png │ ├── ratchet.png │ ├── ratchet@2x.png │ ├── ratchet_full.jpg │ ├── refresh.png │ ├── refresh@2x.png │ ├── reply.png │ ├── retweet.png │ ├── rui.jpg │ ├── scott.png │ ├── scott159.png │ ├── search.png │ ├── slideout.png │ ├── slideout@2x.png │ ├── star-flyout.png │ ├── star-flyout@2x.png │ ├── star.png │ ├── star@2x.png │ ├── tdl.png │ ├── tdl@2x.png │ ├── tdl_full.jpg │ ├── tweet.png │ ├── twitter.png │ ├── twitter@2x.png │ ├── twitternav.png │ ├── twitternav@2x.png │ ├── xamarin_logo.png │ ├── xamarin_logo@2x.png │ ├── xamarin_logo@3x.png │ ├── xamarinlogo.png │ └── xamarinstore.jpg ├── SampleNativeControl.cs ├── SearchbarEffect.cs ├── Tests │ ├── PlatformTestSettings.cs │ └── TestingPlatformService.cs ├── WebImages │ └── XamarinLogo.png ├── Xamarin.Forms.ControlGallery.iOS.csproj ├── _10337CustomRenderer.cs ├── _11132CustomRenderer.cs ├── _2489CustomRenderer.cs ├── _57114Renderer.cs ├── _58406EffectRenderer.cs ├── _60122ImageRenderer.cs ├── _9767CustomRenderer.cs ├── bank.png ├── bank@2x.png ├── calculator.png ├── calculator@2x.png ├── caret_r.png ├── coffee.png ├── coffee@2x.png ├── cover1.jpg ├── cover1small.jpg ├── crimson.jpg ├── crimsonsmall.jpg ├── default.css ├── ionicons.ttf ├── local.html ├── menuIcon.png ├── menuIcon@2x.png ├── move_slider_one_right_ios6_iphone.base64 ├── move_slider_three_right_ios6_iphone.base64 ├── move_slider_two_right_ios6_iphone.base64 ├── oasis.jpg ├── oasissmall.jpg ├── photo.jpg ├── seth.png ├── seth@2x.png ├── settings@2x.png ├── test.jpg ├── toolbar_close.png └── xamarinstore.jpg ├── Xamarin.Forms.Controls.Issues └── Xamarin.Forms.Controls.Issues.Shared │ ├── A11yTabIndex.xaml │ ├── A11yTabIndex.xaml.cs │ ├── AddingMultipleItemsListView.cs │ ├── AndroidHelpText.cs │ ├── AndroidStatusBarColor.cs │ ├── AppBarIconColors.cs │ ├── BottomTabbedPageTests.cs │ ├── Bugzilla21177.cs │ ├── Bugzilla21368.cs │ ├── Bugzilla21501.cs │ ├── Bugzilla21780.cs │ ├── Bugzilla22229.xaml │ ├── Bugzilla22229.xaml.cs │ ├── Bugzilla22401.cs │ ├── Bugzilla23942.xaml │ ├── Bugzilla23942.xaml.cs │ ├── Bugzilla24574.cs │ ├── Bugzilla24769.cs │ ├── Bugzilla25234.cs │ ├── Bugzilla25662.cs │ ├── Bugzilla25943.cs │ ├── Bugzilla25979.cs │ ├── Bugzilla26032.xaml │ ├── Bugzilla26032.xaml.cs │ ├── Bugzilla26171.cs │ ├── Bugzilla26233.cs │ ├── Bugzilla26501.cs │ ├── Bugzilla26868.cs │ ├── Bugzilla26993.cs │ ├── Bugzilla27085.cs │ ├── Bugzilla27318.xaml │ ├── Bugzilla27318.xaml.cs │ ├── Bugzilla27350.cs │ ├── Bugzilla27378.cs │ ├── Bugzilla27417.cs │ ├── Bugzilla27417Xaml.xaml │ ├── Bugzilla27417Xaml.xaml.cs │ ├── Bugzilla27581.cs │ ├── Bugzilla27642.cs │ ├── Bugzilla27698.cs │ ├── Bugzilla27731.cs │ ├── Bugzilla27779.cs │ ├── Bugzilla28001.cs │ ├── Bugzilla28240.cs │ ├── Bugzilla28498.cs │ ├── Bugzilla28570.cs │ ├── Bugzilla28650.cs │ ├── Bugzilla28709.cs │ ├── Bugzilla28796.cs │ ├── Bugzilla28939.cs │ ├── Bugzilla28953.cs │ ├── Bugzilla29017.cs │ ├── Bugzilla29107.xaml │ ├── Bugzilla29107.xaml.cs │ ├── Bugzilla29110.cs │ ├── Bugzilla29128.cs │ ├── Bugzilla29158.cs │ ├── Bugzilla29229.cs │ ├── Bugzilla29247.cs │ ├── Bugzilla29257.cs │ ├── Bugzilla29363.cs │ ├── Bugzilla29453.cs │ ├── Bugzilla30166.cs │ ├── Bugzilla30317.cs │ ├── Bugzilla30324.cs │ ├── Bugzilla30353.cs │ ├── Bugzilla30651.cs │ ├── Bugzilla30835.cs │ ├── Bugzilla30935.cs │ ├── Bugzilla31029.cs │ ├── Bugzilla31114.cs │ ├── Bugzilla31141.cs │ ├── Bugzilla31145.cs │ ├── Bugzilla31255.cs │ ├── Bugzilla31330.cs │ ├── Bugzilla31333.cs │ ├── Bugzilla31366.cs │ ├── Bugzilla31395.cs │ ├── Bugzilla31602.cs │ ├── Bugzilla31688.cs │ ├── Bugzilla31806.cs │ ├── Bugzilla31964.cs │ ├── Bugzilla31967.xaml │ ├── Bugzilla31967.xaml.cs │ ├── Bugzilla32033.cs │ ├── Bugzilla32034.cs │ ├── Bugzilla32040.cs │ ├── Bugzilla32148.cs │ ├── Bugzilla32206.cs │ ├── Bugzilla32447.xaml │ ├── Bugzilla32447.xaml.cs │ ├── Bugzilla32462.cs │ ├── Bugzilla32487.cs │ ├── Bugzilla32615.cs │ ├── Bugzilla32691.cs │ ├── Bugzilla32776.cs │ ├── Bugzilla32801.cs │ ├── Bugzilla32830.cs │ ├── Bugzilla32842.xaml │ ├── Bugzilla32842.xaml.cs │ ├── Bugzilla32847.cs │ ├── Bugzilla32865.cs │ ├── Bugzilla32871.cs │ ├── Bugzilla32898.cs │ ├── Bugzilla32902.cs │ ├── Bugzilla32956.cs │ ├── Bugzilla33248.cs │ ├── Bugzilla33268.cs │ ├── Bugzilla33450.cs │ ├── Bugzilla33561.cs │ ├── Bugzilla33578.cs │ ├── Bugzilla33612.cs │ ├── Bugzilla33714.cs │ ├── Bugzilla33870.cs │ ├── Bugzilla33890.cs │ ├── Bugzilla34007.cs │ ├── Bugzilla34061.cs │ ├── Bugzilla34072.cs │ ├── Bugzilla34561.cs │ ├── Bugzilla34632.cs │ ├── Bugzilla34720.cs │ ├── Bugzilla34727.cs │ ├── Bugzilla34912.cs │ ├── Bugzilla35078.cs │ ├── Bugzilla35127.cs │ ├── Bugzilla35132.cs │ ├── Bugzilla35157.cs │ ├── Bugzilla35294.cs │ ├── Bugzilla35472.cs │ ├── Bugzilla35477.cs │ ├── Bugzilla35490.cs │ ├── Bugzilla35733.cs │ ├── Bugzilla35736.cs │ ├── Bugzilla36009.cs │ ├── Bugzilla36014.cs │ ├── Bugzilla36171.cs │ ├── Bugzilla36393.cs │ ├── Bugzilla36479.cs │ ├── Bugzilla36559.cs │ ├── Bugzilla36649.cs │ ├── Bugzilla36651.cs │ ├── Bugzilla36681.cs │ ├── Bugzilla36703.cs │ ├── Bugzilla36780.cs │ ├── Bugzilla36788.cs │ ├── Bugzilla36802.cs │ ├── Bugzilla36846.cs │ ├── Bugzilla36955.cs │ ├── Bugzilla37285.cs │ ├── Bugzilla37290.cs │ ├── Bugzilla37431.cs │ ├── Bugzilla37462.cs │ ├── Bugzilla37601.cs │ ├── Bugzilla37625.cs │ ├── Bugzilla37841.cs │ ├── Bugzilla37863.cs │ ├── Bugzilla38105.cs │ ├── Bugzilla38112.cs │ ├── Bugzilla38284.cs │ ├── Bugzilla38416.xaml │ ├── Bugzilla38416.xaml.cs │ ├── Bugzilla38658.cs │ ├── Bugzilla38723.cs │ ├── Bugzilla38731.cs │ ├── Bugzilla38770.cs │ ├── Bugzilla38827.xaml │ ├── Bugzilla38827.xaml.cs │ ├── Bugzilla38978.cs │ ├── Bugzilla38989.cs │ ├── Bugzilla39331.cs │ ├── Bugzilla39378.xaml │ ├── Bugzilla39378.xaml.cs │ ├── Bugzilla39395.cs │ ├── Bugzilla39407.cs │ ├── Bugzilla39458.cs │ ├── Bugzilla39461.cs │ ├── Bugzilla39463.xaml │ ├── Bugzilla39463.xaml.cs │ ├── Bugzilla39483.xaml │ ├── Bugzilla39483.xaml.cs │ ├── Bugzilla39486.cs │ ├── Bugzilla39489.cs │ ├── Bugzilla39530.cs │ ├── Bugzilla39624.cs │ ├── Bugzilla39636.xaml │ ├── Bugzilla39636.xaml.cs │ ├── Bugzilla39668.cs │ ├── Bugzilla39702.cs │ ├── Bugzilla39768.cs │ ├── Bugzilla39802.cs │ ├── Bugzilla39821.cs │ ├── Bugzilla39829.cs │ ├── Bugzilla39853.cs │ ├── Bugzilla39908.cs │ ├── Bugzilla39963.cs │ ├── Bugzilla39987.cs │ ├── Bugzilla40005.cs │ ├── Bugzilla40073.cs │ ├── Bugzilla40092.cs │ ├── Bugzilla40139.cs │ ├── Bugzilla40161.cs │ ├── Bugzilla40173.cs │ ├── Bugzilla40185.cs │ ├── Bugzilla40251.cs │ ├── Bugzilla40333.cs │ ├── Bugzilla40408.cs │ ├── Bugzilla40704.cs │ ├── Bugzilla40722.cs │ ├── Bugzilla40824.cs │ ├── Bugzilla40858.cs │ ├── Bugzilla40911.cs │ ├── Bugzilla40955.cs │ ├── Bugzilla40998.cs │ ├── Bugzilla41029.cs │ ├── Bugzilla41038.cs │ ├── Bugzilla41054.cs │ ├── Bugzilla41078.cs │ ├── Bugzilla41153.cs │ ├── Bugzilla41205.cs │ ├── Bugzilla41271.cs │ ├── Bugzilla41415.cs │ ├── Bugzilla41418.cs │ ├── Bugzilla41424.cs │ ├── Bugzilla41600.cs │ ├── Bugzilla41619.cs │ ├── Bugzilla41778.cs │ ├── Bugzilla41842.cs │ ├── Bugzilla42000.cs │ ├── Bugzilla42069.cs │ ├── Bugzilla42069_Page.xaml │ ├── Bugzilla42069_Page.xaml.cs │ ├── Bugzilla42074.cs │ ├── Bugzilla42075.cs │ ├── Bugzilla42277.cs │ ├── Bugzilla42329.cs │ ├── Bugzilla42364.cs │ ├── Bugzilla42519.cs │ ├── Bugzilla42599.cs │ ├── Bugzilla42602.cs │ ├── Bugzilla42620.cs │ ├── Bugzilla42832.cs │ ├── Bugzilla42956.cs │ ├── Bugzilla43161.cs │ ├── Bugzilla43214.cs │ ├── Bugzilla43313.cs │ ├── Bugzilla43469.cs │ ├── Bugzilla43516.cs │ ├── Bugzilla43519.cs │ ├── Bugzilla43527.cs │ ├── Bugzilla43663.cs │ ├── Bugzilla43735.cs │ ├── Bugzilla43783.cs │ ├── Bugzilla43867.cs │ ├── Bugzilla43941.cs │ ├── Bugzilla44044.cs │ ├── Bugzilla44047.cs │ ├── Bugzilla44096.cs │ ├── Bugzilla44129.cs │ ├── Bugzilla44166.cs │ ├── Bugzilla44176.cs │ ├── Bugzilla44338.cs │ ├── Bugzilla44453.cs │ ├── Bugzilla44461.cs │ ├── Bugzilla44476.cs │ ├── Bugzilla44500.cs │ ├── Bugzilla44525.cs │ ├── Bugzilla44584.cs │ ├── Bugzilla44777.cs │ ├── Bugzilla44886.cs │ ├── Bugzilla44940.cs │ ├── Bugzilla44944.cs │ ├── Bugzilla44955.cs │ ├── Bugzilla44980.cs │ ├── Bugzilla45027.cs │ ├── Bugzilla45067.cs │ ├── Bugzilla45125.cs │ ├── Bugzilla45215.cs │ ├── Bugzilla45277.cs │ ├── Bugzilla45284.xaml │ ├── Bugzilla45284.xaml.cs │ ├── Bugzilla45330.cs │ ├── Bugzilla45702.cs │ ├── Bugzilla45722.cs │ ├── Bugzilla45722Xaml0.xaml │ ├── Bugzilla45722Xaml0.xaml.cs │ ├── Bugzilla45723.cs │ ├── Bugzilla45743.cs │ ├── Bugzilla45874.cs │ ├── Bugzilla45926.cs │ ├── Bugzilla46363.cs │ ├── Bugzilla46363_2.cs │ ├── Bugzilla46458.cs │ ├── Bugzilla46494.cs │ ├── Bugzilla46630.cs │ ├── Bugzilla47548.cs │ ├── Bugzilla47923.cs │ ├── Bugzilla47971.cs │ ├── Bugzilla48158.cs │ ├── Bugzilla48236.cs │ ├── Bugzilla49069.cs │ ├── Bugzilla49304.cs │ ├── Bugzilla50787.cs │ ├── Bugzilla51173.cs │ ├── Bugzilla51236.cs │ ├── Bugzilla51238.cs │ ├── Bugzilla51427.cs │ ├── Bugzilla51503.cs │ ├── Bugzilla51505.cs │ ├── Bugzilla51536.cs │ ├── Bugzilla51553.cs │ ├── Bugzilla51642.xaml │ ├── Bugzilla51642.xaml.cs │ ├── Bugzilla51802.cs │ ├── Bugzilla51825.cs │ ├── Bugzilla52299.cs │ ├── Bugzilla52318.cs │ ├── Bugzilla52419.cs │ ├── Bugzilla52533.cs │ ├── Bugzilla52700.cs │ ├── Bugzilla53179.cs │ ├── Bugzilla53179_1.cs │ ├── Bugzilla53179_2.cs │ ├── Bugzilla53362.cs │ ├── Bugzilla53445.cs │ ├── Bugzilla53834.cs │ ├── Bugzilla53909.cs │ ├── Bugzilla54036.cs │ ├── Bugzilla54649.cs │ ├── Bugzilla54977.xaml │ ├── Bugzilla54977.xaml.cs │ ├── Bugzilla55365.cs │ ├── Bugzilla55674.cs │ ├── Bugzilla55714.cs │ ├── Bugzilla55745.cs │ ├── Bugzilla55912.cs │ ├── Bugzilla56298.cs │ ├── Bugzilla56609.cs │ ├── Bugzilla56710.cs │ ├── Bugzilla56771.cs │ ├── Bugzilla56896.cs │ ├── Bugzilla57114.cs │ ├── Bugzilla57317.cs │ ├── Bugzilla57515.cs │ ├── Bugzilla57674.cs │ ├── Bugzilla57749.cs │ ├── Bugzilla57758.cs │ ├── Bugzilla57910.cs │ ├── Bugzilla58406.cs │ ├── Bugzilla58645.cs │ ├── Bugzilla58779.cs │ ├── Bugzilla58833.cs │ ├── Bugzilla58875.cs │ ├── Bugzilla59097.cs │ ├── Bugzilla59172.cs │ ├── Bugzilla59248.cs │ ├── Bugzilla59457.cs │ ├── Bugzilla59580.cs │ ├── Bugzilla59718.cs │ ├── Bugzilla59863_0.cs │ ├── Bugzilla59863_1.cs │ ├── Bugzilla59863_2.cs │ ├── Bugzilla59896.cs │ ├── Bugzilla59925.cs │ ├── Bugzilla60001.cs │ ├── Bugzilla60045.xaml │ ├── Bugzilla60045.xaml.cs │ ├── Bugzilla60056.cs │ ├── Bugzilla60122.cs │ ├── Bugzilla60382.cs │ ├── Bugzilla60524.cs │ ├── Bugzilla60563.cs │ ├── Bugzilla60691.cs │ ├── Bugzilla60699.cs │ ├── Bugzilla60774.cs │ ├── Bugzilla60774_1.cs │ ├── Bugzilla60774_2.cs │ ├── Bugzilla60787.xaml │ ├── Bugzilla60787.xaml.cs │ ├── ButtonBackgroundColorTest.cs │ ├── ButtonFastRendererTest.cs │ ├── CarouselAsync.cs │ ├── CascadeInputTransparent.cs │ ├── CollectionViewBindingErrors.xaml │ ├── CollectionViewBindingErrors.xaml.cs │ ├── CollectionViewBoundMultiSelection.cs │ ├── CollectionViewBoundSingleSelection.cs │ ├── CollectionViewGroupTypeIssue.cs │ ├── CollectionViewGrouping.cs │ ├── CollectionViewHeaderFooterString.cs │ ├── CollectionViewHeaderFooterTemplate.cs │ ├── CollectionViewHeaderFooterView.cs │ ├── CollectionViewItemsSourceTypes.cs │ ├── CollectionViewItemsUpdatingScrollMode.cs │ ├── ComplexListView.cs │ ├── Controls │ ├── ApiLabel.cs │ ├── ContactsPage.cs │ ├── DisposedSharedPages.cs │ ├── FailImageSource.cs │ ├── GenericValueConverter.cs │ ├── GridExtension.cs │ ├── ICacheService.cs │ ├── INativeColorService.cs │ ├── PerformanceProvider.cs │ └── ViewModelBase.cs │ ├── CustomImageRendererErrorHandling.cs │ ├── DataTemplateGridImageTest.cs │ ├── DateTimePickerLocalizationTests.cs │ ├── DefaultColorToggleTest.cs │ ├── DesktopSupportTestPage.cs │ ├── Effects.cs │ ├── Effects │ ├── AttachedStateEffect.cs │ ├── AttachedStateEffectLabel.cs │ └── AttachedStateEffectList.cs │ ├── FlagTestHelpers.cs │ ├── FlyoutBehaviorShell.cs │ ├── GestureBubblingTests.cs │ ├── GitHub1331.xaml │ ├── GitHub1331.xaml.cs │ ├── GitHub1355.cs │ ├── GitHub1567.cs │ ├── GitHub1648.cs │ ├── GitHub1650.cs │ ├── GitHub1700.cs │ ├── GitHub1702.cs │ ├── GitHub1776.cs │ ├── GitHub1878.cs │ ├── GitHub2598.cs │ ├── GitHub2642.cs │ ├── GitHub3216.cs │ ├── GitHub6926.cs │ ├── Github1461.cs │ ├── Github1625.cs │ ├── Github3847.xaml │ ├── Github3847.xaml.cs │ ├── Github3856.cs │ ├── Github5623.xaml │ ├── Github5623.xaml.cs │ ├── Github6021.cs │ ├── Github6384.cs │ ├── Github9536.xaml │ ├── Github9536.xaml.cs │ ├── GroupListViewHeaderIndexOutOfRange.cs │ ├── HeaderFooterShellFlyout.cs │ ├── Helpers │ ├── GarbageCollectionHelper.cs │ ├── ISampleNativeControl.cs │ ├── UITestHelper.cs │ └── ViewHelper.cs │ ├── InputTransparentTests.cs │ ├── IsInvokeRequiredRaceCondition.cs │ ├── IsPasswordToggleTest.cs │ ├── IsShowingUserIssue.cs │ ├── Issue10024.xaml │ ├── Issue10024.xaml.cs │ ├── Issue10086.xaml │ ├── Issue10086.xaml.cs │ ├── Issue10110.cs │ ├── Issue10134.cs │ ├── Issue10166.xaml │ ├── Issue10166.xaml.cs │ ├── Issue10182.cs │ ├── Issue10222.cs │ ├── Issue1023.cs │ ├── Issue10234.cs │ ├── Issue1024.cs │ ├── Issue1025.cs │ ├── Issue1026.cs │ ├── Issue1028.cs │ ├── Issue10300.cs │ ├── Issue10307.cs │ ├── Issue10324.cs │ ├── Issue10333.xaml │ ├── Issue10333.xaml.cs │ ├── Issue10337.cs │ ├── Issue10348.xaml │ ├── Issue10348.xaml.cs │ ├── Issue10422.xaml │ ├── Issue10422.xaml.cs │ ├── Issue10438.cs │ ├── Issue10454.cs │ ├── Issue10477.xaml │ ├── Issue10477.xaml.cs │ ├── Issue10482.xaml │ ├── Issue10482.xaml.cs │ ├── Issue10497.cs │ ├── Issue10530.cs │ ├── Issue10563.cs │ ├── Issue10578.xaml │ ├── Issue10578.xaml.cs │ ├── Issue10608.cs │ ├── Issue10623.cs │ ├── Issue10672.xaml │ ├── Issue10672.xaml.cs │ ├── Issue10679.xaml │ ├── Issue10679.xaml.cs │ ├── Issue10699.cs │ ├── Issue10708.cs │ ├── Issue10735.xaml │ ├── Issue10735.xaml.cs │ ├── Issue10744.cs │ ├── Issue1075.cs │ ├── Issue10865.xaml │ ├── Issue10865.xaml.cs │ ├── Issue10875.xaml │ ├── Issue10875.xaml.cs │ ├── Issue10897.xaml │ ├── Issue10897.xaml.cs │ ├── Issue10908.xaml │ ├── Issue10908.xaml.cs │ ├── Issue10909.cs │ ├── Issue10940.cs │ ├── Issue1097.cs │ ├── Issue11018.cs │ ├── Issue11031.cs │ ├── Issue11033.cs │ ├── Issue11050.xaml │ ├── Issue11050.xaml.cs │ ├── Issue11081.xaml │ ├── Issue11081.xaml.cs │ ├── Issue11090.cs │ ├── Issue11106.cs │ ├── Issue11107.cs │ ├── Issue11113.xaml │ ├── Issue11113.xaml.cs │ ├── Issue11120.xaml │ ├── Issue11120.xaml.cs │ ├── Issue11132.cs │ ├── Issue11137.cs │ ├── Issue11155.cs │ ├── Issue11185.cs │ ├── Issue11190.xaml │ ├── Issue11190.xaml.cs │ ├── Issue11209.xaml │ ├── Issue11209.xaml.cs │ ├── Issue11214.cs │ ├── Issue11224.xaml │ ├── Issue11224.xaml.cs │ ├── Issue11244.cs │ ├── Issue11247.cs │ ├── Issue11251.cs │ ├── Issue11259.cs │ ├── Issue11259.xaml │ ├── Issue11262.xaml │ ├── Issue11262.xaml.cs │ ├── Issue11272.cs │ ├── Issue11286.cs │ ├── Issue11291.cs │ ├── Issue11311.cs │ ├── Issue11314.cs │ ├── Issue11333.xaml │ ├── Issue11333.xaml.cs │ ├── Issue11374.xaml │ ├── Issue11374.xaml.cs │ ├── Issue11381.xaml │ ├── Issue11381.xaml.cs │ ├── Issue11413.xaml │ ├── Issue11413.xaml.cs │ ├── Issue11430.cs │ ├── Issue1146.cs │ ├── Issue11496.xaml │ ├── Issue11496.xaml.cs │ ├── Issue11523.cs │ ├── Issue11547.xaml │ ├── Issue11547.xaml.cs │ ├── Issue11563.cs │ ├── Issue11571.xaml │ ├── Issue11571.xaml.cs │ ├── Issue11572.xaml │ ├── Issue11572.xaml.cs │ ├── Issue11573.xaml │ ├── Issue11573.xaml.cs │ ├── Issue11643.xaml │ ├── Issue11643.xaml.cs │ ├── Issue11653.xaml │ ├── Issue11653.xaml.cs │ ├── Issue11691.xaml │ ├── Issue11691.xaml.cs │ ├── Issue11703.cs │ ├── Issue11709.xaml │ ├── Issue11709.xaml.cs │ ├── Issue11715.xaml │ ├── Issue11715.xaml.cs │ ├── Issue11723.cs │ ├── Issue11737.xaml │ ├── Issue11737.xaml.cs │ ├── Issue11764.xaml │ ├── Issue11764.xaml.cs │ ├── Issue11769.cs │ ├── Issue11794.xaml │ ├── Issue11794.xaml.cs │ ├── Issue11800.cs │ ├── Issue11831.xaml │ ├── Issue11831.xaml.cs │ ├── Issue11853.xaml │ ├── Issue11853.xaml.cs │ ├── Issue11858.cs │ ├── Issue11865.cs │ ├── Issue11869.cs │ ├── Issue11875.xaml │ ├── Issue11875.xaml.cs │ ├── Issue11911.xaml │ ├── Issue11911.xaml.cs │ ├── Issue11924.cs │ ├── Issue11931.xaml │ ├── Issue11931.xaml.cs │ ├── Issue11938.xaml │ ├── Issue11938.xaml.cs │ ├── Issue11962.cs │ ├── Issue11963.cs │ ├── Issue11969.xaml │ ├── Issue11969.xaml.cs │ ├── Issue12060.cs │ ├── Issue12079.cs │ ├── Issue12084.xaml │ ├── Issue12084.xaml.cs │ ├── Issue12126.cs │ ├── Issue12134.cs │ ├── Issue12153.cs │ ├── Issue1219.cs │ ├── Issue12193.cs │ ├── Issue12222.cs │ ├── Issue12246.cs │ ├── Issue1228.cs │ ├── Issue12315.xaml │ ├── Issue12315.xaml.cs │ ├── Issue12320.cs │ ├── Issue12344.xaml │ ├── Issue12344.xaml.cs │ ├── Issue1236.cs │ ├── Issue12372.cs │ ├── Issue12374.xaml │ ├── Issue12374.xaml.cs │ ├── Issue12429.xaml │ ├── Issue12429.xaml.cs │ ├── Issue12473.xaml │ ├── Issue12473.xaml.cs │ ├── Issue12484.xaml │ ├── Issue12484.xaml.cs │ ├── Issue12512.cs │ ├── Issue12521.xaml │ ├── Issue12521.xaml.cs │ ├── Issue12541.xaml │ ├── Issue12541.xaml.cs │ ├── Issue12574.cs │ ├── Issue12582.xaml │ ├── Issue12582.xaml.cs │ ├── Issue1259.cs │ ├── Issue12642.cs │ ├── Issue12652.cs │ ├── Issue1267.cs │ ├── Issue12685.cs │ ├── Issue12714.cs │ ├── Issue12750.xaml │ ├── Issue12750.xaml.cs │ ├── Issue12777.cs │ ├── Issue12809.xaml │ ├── Issue12809.xaml.cs │ ├── Issue12848.xaml │ ├── Issue12848.xaml.cs │ ├── Issue12910.xaml │ ├── Issue12910.xaml.cs │ ├── Issue12911.xaml │ ├── Issue12911.xaml.cs │ ├── Issue12912.xaml │ ├── Issue12912.xaml.cs │ ├── Issue1305.cs │ ├── Issue13109.cs │ ├── Issue13136.xaml │ ├── Issue13136.xaml.cs │ ├── Issue13164.cs │ ├── Issue13203.cs │ ├── Issue1323.cs │ ├── Issue1326.cs │ ├── Issue1329.cs │ ├── Issue1332.cs │ ├── Issue13390.cs │ ├── Issue1342.cs │ ├── Issue13436.xaml │ ├── Issue13436.xaml.cs │ ├── Issue1347.cs │ ├── Issue1355.cs │ ├── Issue13551.cs │ ├── Issue1356.cs │ ├── Issue13616.xaml │ ├── Issue13616.xaml.cs │ ├── Issue1384.cs │ ├── Issue1386.cs │ ├── Issue1396.cs │ ├── Issue1399.cs │ ├── Issue1400.cs │ ├── Issue1414.cs │ ├── Issue1415.cs │ ├── Issue1426.cs │ ├── Issue1436.cs │ ├── Issue1439.cs │ ├── Issue1455.xaml │ ├── Issue1455.xaml.cs │ ├── Issue1461.cs │ ├── Issue1469.cs │ ├── Issue1480.cs │ ├── Issue1483.cs │ ├── Issue1497.xaml │ ├── Issue1497.xaml.cs │ ├── Issue1538.cs │ ├── Issue1544.cs │ ├── Issue1545.xaml │ ├── Issue1545.xaml.cs │ ├── Issue1546.cs │ ├── Issue1554.xaml │ ├── Issue1554.xaml.cs │ ├── Issue1556.cs │ ├── Issue1557.cs │ ├── Issue1566.cs │ ├── Issue1567.cs │ ├── Issue1568.xaml │ ├── Issue1568.xaml.cs │ ├── Issue1583.cs │ ├── Issue1583_1.cs │ ├── Issue1588.xaml │ ├── Issue1588.xaml.cs │ ├── Issue1590.cs │ ├── Issue1593.cs │ ├── Issue1598.cs │ ├── Issue1601.cs │ ├── Issue1613.cs │ ├── Issue1614.cs │ ├── Issue1618.cs │ ├── Issue1641.xaml │ ├── Issue1641.xaml.cs │ ├── Issue1644.cs │ ├── Issue1653.xaml │ ├── Issue1653.xaml.cs │ ├── Issue1653v2.xaml │ ├── Issue1653v2.xaml.cs │ ├── Issue1658.cs │ ├── Issue1660.cs │ ├── Issue1664.cs │ ├── Issue1665.cs │ ├── Issue1666.cs │ ├── Issue1667.cs │ ├── Issue1672.cs │ ├── Issue1677.cs │ ├── Issue1678.cs │ ├── Issue1680.cs │ ├── Issue1682.cs │ ├── Issue1683.cs │ ├── Issue1685.cs │ ├── Issue1691.cs │ ├── Issue1691_2.cs │ ├── Issue1698.cs │ ├── Issue1700.cs │ ├── Issue1703.cs │ ├── Issue1704.cs │ ├── Issue1705.cs │ ├── Issue1705_2.cs │ ├── Issue1707.cs │ ├── Issue1712.xaml │ ├── Issue1712.xaml.cs │ ├── Issue1717.cs │ ├── Issue1722.cs │ ├── Issue1723.cs │ ├── Issue1724.cs │ ├── Issue1729.cs │ ├── Issue1733.cs │ ├── Issue1734.cs │ ├── Issue1741.xaml │ ├── Issue1741.xaml.cs │ ├── Issue1742.cs │ ├── Issue1747.xaml │ ├── Issue1747.xaml.cs │ ├── Issue1755.cs │ ├── Issue1758.cs │ ├── Issue1760.cs │ ├── Issue1760_1.cs │ ├── Issue1763.cs │ ├── Issue1766.xaml │ ├── Issue1766.xaml.cs │ ├── Issue1769.cs │ ├── Issue1777.cs │ ├── Issue1799.cs │ ├── Issue1801.cs │ ├── Issue181.cs │ ├── Issue1851.cs │ ├── Issue1864.cs │ ├── Issue1875.cs │ ├── Issue1888.cs │ ├── Issue1891.cs │ ├── Issue1895.cs │ ├── Issue1898.cs │ ├── Issue1900.cs │ ├── Issue1905.cs │ ├── Issue1908.cs │ ├── Issue1909.cs │ ├── Issue1914.cs │ ├── Issue1931.cs │ ├── Issue1937.cs │ ├── Issue1939.cs │ ├── Issue194.cs │ ├── Issue1942.cs │ ├── Issue1975.cs │ ├── Issue198.cs │ ├── Issue2004.cs │ ├── Issue2035.cs │ ├── Issue206.cs │ ├── Issue2102.cs │ ├── Issue2104.cs │ ├── Issue214.cs │ ├── Issue2143.cs │ ├── Issue2172.xaml │ ├── Issue2172.xaml.cs │ ├── Issue2187.cs │ ├── Issue2204.cs │ ├── Issue2222.cs │ ├── Issue2223.cs │ ├── Issue22246_BZ.cs │ ├── Issue2241.cs │ ├── Issue2247.cs │ ├── Issue2248.cs │ ├── Issue2259.cs │ ├── Issue2266.cs │ ├── Issue2270.cs │ ├── Issue2271.cs │ ├── Issue2272.cs │ ├── Issue2282.xaml │ ├── Issue2282.xaml.cs │ ├── Issue2288.xaml │ ├── Issue2288.xaml.cs │ ├── Issue2289.xaml │ ├── Issue2289.xaml.cs │ ├── Issue229.cs │ ├── Issue2291.cs │ ├── Issue2292.cs │ ├── Issue2294.cs │ ├── Issue2299.cs │ ├── Issue2333.cs │ ├── Issue2338.cs │ ├── Issue2339.cs │ ├── Issue2354.cs │ ├── Issue2357.xaml │ ├── Issue2357.xaml.cs │ ├── Issue2394.cs │ ├── Issue2399.cs │ ├── Issue2411.cs │ ├── Issue2414.cs │ ├── Issue2447.xaml │ ├── Issue2447.xaml.cs │ ├── Issue2448.xaml │ ├── Issue2448.xaml.cs │ ├── Issue2470.xaml │ ├── Issue2470.xaml.cs │ ├── Issue2482.cs │ ├── Issue2499.cs │ ├── Issue2563.cs │ ├── Issue2577.cs │ ├── Issue2580.cs │ ├── Issue2594.cs │ ├── Issue2595.cs │ ├── Issue2597.cs │ ├── Issue260.cs │ ├── Issue2615.cs │ ├── Issue2617.cs │ ├── Issue2625.xaml │ ├── Issue2625.xaml.cs │ ├── Issue2628.cs │ ├── Issue2634.cs │ ├── Issue264.cs │ ├── Issue2653.cs │ ├── Issue2659.xaml │ ├── Issue2659.xaml.cs │ ├── Issue2674.cs │ ├── Issue2680ScrollView.cs │ ├── Issue2681.cs │ ├── Issue2728.cs │ ├── Issue2740.cs │ ├── Issue2763.cs │ ├── Issue2767.cs │ ├── Issue2775.cs │ ├── Issue2777.xaml │ ├── Issue2777.xaml.cs │ ├── Issue2783.cs │ ├── Issue2794.cs │ ├── Issue2809.cs │ ├── Issue2818.cs │ ├── Issue2829.cs │ ├── Issue2831.cs │ ├── Issue2837.cs │ ├── Issue2838.cs │ ├── Issue2842.cs │ ├── Issue2858.xaml │ ├── Issue2858.xaml.cs │ ├── Issue2883.cs │ ├── Issue2894.cs │ ├── Issue2923.cs │ ├── Issue2927.cs │ ├── Issue2929.cs │ ├── Issue2948.cs │ ├── Issue2951.xaml │ ├── Issue2951.xaml.cs │ ├── Issue2953.cs │ ├── Issue2954.cs │ ├── Issue2961.cs │ ├── Issue2963.cs │ ├── Issue2964.cs │ ├── Issue2965.cs │ ├── Issue2976.cs │ ├── Issue2981.cs │ ├── Issue2983.cs │ ├── Issue2987.cs │ ├── Issue2993.cs │ ├── Issue3000.cs │ ├── Issue3001.cs │ ├── Issue3008.cs │ ├── Issue3012.cs │ ├── Issue3019.cs │ ├── Issue3049.cs │ ├── Issue3053.cs │ ├── Issue3086.xaml │ ├── Issue3086.xaml.cs │ ├── Issue3087.cs │ ├── Issue3089.cs │ ├── Issue3139.cs │ ├── Issue3150.cs │ ├── Issue3228.xaml │ ├── Issue3228.xaml.cs │ ├── Issue3271.cs │ ├── Issue3273.cs │ ├── Issue3275.cs │ ├── Issue3276.cs │ ├── Issue3292.cs │ ├── Issue3306.cs │ ├── Issue3308.cs │ ├── Issue3311.cs │ ├── Issue3318.cs │ ├── Issue3319.xaml │ ├── Issue3319.xaml.cs │ ├── Issue3333.cs │ ├── Issue3342.cs │ ├── Issue3343.cs │ ├── Issue3367.cs │ ├── Issue3385.cs │ ├── Issue3390.cs │ ├── Issue3398.cs │ ├── Issue3408.cs │ ├── Issue3413.cs │ ├── Issue3415.cs │ ├── Issue342.cs │ ├── Issue3454.cs │ ├── Issue3475.cs │ ├── Issue3507.cs │ ├── Issue3509.cs │ ├── Issue3524.cs │ ├── Issue3525.cs │ ├── Issue3541.cs │ ├── Issue3548.cs │ ├── Issue3555.cs │ ├── Issue3558.cs │ ├── Issue3622.cs │ ├── Issue3624.cs │ ├── Issue3652.cs │ ├── Issue3667.cs │ ├── Issue3788.cs │ ├── Issue3798.xaml │ ├── Issue3798.xaml.cs │ ├── Issue3809.cs │ ├── Issue3840.cs │ ├── Issue3843.cs │ ├── Issue3872.cs │ ├── Issue3884.cs │ ├── Issue3913.cs │ ├── Issue3979.xaml │ ├── Issue3979.xaml.cs │ ├── Issue3988.cs │ ├── Issue4001.cs │ ├── Issue4026.cs │ ├── Issue4040.xaml │ ├── Issue4040.xaml.cs │ ├── Issue4053.cs │ ├── Issue4097.cs │ ├── Issue4136.cs │ ├── Issue4138.cs │ ├── Issue416.cs │ ├── Issue417.cs │ ├── Issue4187.cs │ ├── Issue4194.xaml │ ├── Issue4194.xaml.cs │ ├── Issue4262.cs │ ├── Issue4303.cs │ ├── Issue4314.cs │ ├── Issue4356.cs │ ├── Issue4356.xaml │ ├── Issue4360.xaml │ ├── Issue4360.xaml.cs │ ├── Issue4384.cs │ ├── Issue4459.xaml │ ├── Issue4459.xaml.cs │ ├── Issue4484.cs │ ├── Issue4493.cs │ ├── Issue4561.cs │ ├── Issue4597.cs │ ├── Issue4600.cs │ ├── Issue4606.cs │ ├── Issue4629.cs │ ├── Issue465.cs │ ├── Issue4653.cs │ ├── Issue4684.xaml │ ├── Issue4684.xaml.cs │ ├── Issue4714.cs │ ├── Issue4720.cs │ ├── Issue4744.xaml │ ├── Issue4744.xaml.cs │ ├── Issue4748.cs │ ├── Issue4756.cs │ ├── Issue4782.cs │ ├── Issue4854.cs │ ├── Issue4879.cs │ ├── Issue488.cs │ ├── Issue4891.cs │ ├── Issue4915.xaml │ ├── Issue4915.xaml.cs │ ├── Issue4919.cs │ ├── Issue4961.cs │ ├── Issue4973.cs │ ├── Issue4992.xaml │ ├── Issue4992.xaml.cs │ ├── Issue5003.xaml │ ├── Issue5003.xaml.cs │ ├── Issue5030.cs │ ├── Issue5046.xaml │ ├── Issue5046.xaml.cs │ ├── Issue5057.xaml │ ├── Issue5057.xaml.cs │ ├── Issue5108.xaml │ ├── Issue5108.xaml.cs │ ├── Issue5131.cs │ ├── Issue5132.cs │ ├── Issue5150.cs │ ├── Issue5159.cs │ ├── Issue5168.cs │ ├── Issue5172.cs │ ├── Issue5184.cs │ ├── Issue5204.cs │ ├── Issue5239.cs │ ├── Issue5252.cs │ ├── Issue5268.xaml │ ├── Issue5268.xaml.cs │ ├── Issue530.cs │ ├── Issue5354.xaml │ ├── Issue5354.xaml.cs │ ├── Issue5367.cs │ ├── Issue5376.cs │ ├── Issue5395.cs │ ├── Issue5412.cs │ ├── Issue5461.cs │ ├── Issue5470.cs │ ├── Issue5500.cs │ ├── Issue5503.cs │ ├── Issue5518.cs │ ├── Issue5535.cs │ ├── Issue5555.cs │ ├── Issue55555.cs │ ├── Issue5577.xaml │ ├── Issue5577.xaml.cs │ ├── Issue5596.cs │ ├── Issue5680.xaml │ ├── Issue5680.xaml.cs │ ├── Issue5695.cs │ ├── Issue5724.cs │ ├── Issue5728.cs │ ├── Issue5749.xaml │ ├── Issue5749.xaml.cs │ ├── Issue5765.cs │ ├── Issue5766.cs │ ├── Issue5793.cs │ ├── Issue5801.xaml │ ├── Issue5801.xaml.cs │ ├── Issue5830.cs │ ├── Issue5831.cs │ ├── Issue5868.cs │ ├── Issue5886.cs │ ├── Issue5888.cs │ ├── Issue5949.cs │ ├── Issue5949_1.xaml │ ├── Issue5949_1.xaml.cs │ ├── Issue5949_2.xaml │ ├── Issue5949_2.xaml.cs │ ├── Issue5951.cs │ ├── Issue6077.cs │ ├── Issue6127.cs │ ├── Issue6130.xaml │ ├── Issue6130.xaml.cs │ ├── Issue6132.cs │ ├── Issue6184.xaml │ ├── Issue6184.xaml.cs │ ├── Issue6187.cs │ ├── Issue6258.cs │ ├── Issue6260.cs │ ├── Issue6262.cs │ ├── Issue6282.xaml │ ├── Issue6282.xaml.cs │ ├── Issue6286.cs │ ├── Issue6323.cs │ ├── Issue6334.cs │ ├── Issue6362.cs │ ├── Issue6368.cs │ ├── Issue6403.xaml │ ├── Issue6403.xaml.cs │ ├── Issue6417.cs │ ├── Issue6458.cs │ ├── Issue6472.cs │ ├── Issue6476.cs │ ├── Issue6484.cs │ ├── Issue6491.cs │ ├── Issue6556.cs │ ├── Issue6609.cs │ ├── Issue6614.cs │ ├── Issue6640.cs │ ├── Issue6644.xaml │ ├── Issue6644.xaml.cs │ ├── Issue6663.cs │ ├── Issue6693.xaml │ ├── Issue6693.xaml.cs │ ├── Issue6698.cs │ ├── Issue6698View2.xaml │ ├── Issue6698View2.xaml.cs │ ├── Issue6705.cs │ ├── Issue6713.cs │ ├── Issue6738.cs │ ├── Issue6784.cs │ ├── Issue6802.cs │ ├── Issue6804.cs │ ├── Issue6878.cs │ ├── Issue6889.cs │ ├── Issue6894.cs │ ├── Issue6929.cs │ ├── Issue6932.xaml │ ├── Issue6932.xaml.cs │ ├── Issue6932_emptyviewstring.xaml │ ├── Issue6932_emptyviewstring.xaml.cs │ ├── Issue6932_emptyviewtemplate.xaml │ ├── Issue6932_emptyviewtemplate.xaml.cs │ ├── Issue6945.cs │ ├── Issue6957.cs │ ├── Issue6963.cs │ ├── Issue6994.cs │ ├── Issue7035.xaml │ ├── Issue7035.xaml.cs │ ├── Issue7048.xaml │ ├── Issue7048.xaml.cs │ ├── Issue7049.cs │ ├── Issue7053.cs │ ├── Issue7061.cs │ ├── Issue7102.cs │ ├── Issue7111.cs │ ├── Issue7128.cs │ ├── Issue7167.xaml │ ├── Issue7167.xaml.cs │ ├── Issue7181.cs │ ├── Issue7240.cs │ ├── Issue7242.xaml │ ├── Issue7242.xaml.cs │ ├── Issue7249.cs │ ├── Issue7253.cs │ ├── Issue7283.cs │ ├── Issue7290.cs │ ├── Issue7311.cs │ ├── Issue7313.cs │ ├── Issue7329.cs │ ├── Issue7338.cs │ ├── Issue7339.cs │ ├── Issue7357.xaml │ ├── Issue7357.xaml.cs │ ├── Issue7361.cs │ ├── Issue7371.cs │ ├── Issue7385.cs │ ├── Issue7393.cs │ ├── Issue7395.cs │ ├── Issue7396.cs │ ├── Issue7505.cs │ ├── Issue7510.cs │ ├── Issue7512.xaml │ ├── Issue7512.xaml.cs │ ├── Issue7519.cs │ ├── Issue7519Xaml.xaml │ ├── Issue7519Xaml.xaml.cs │ ├── Issue7525.xaml │ ├── Issue7525.xaml.cs │ ├── Issue7534.cs │ ├── Issue7556.cs │ ├── Issue7563.cs │ ├── Issue7581.cs │ ├── Issue7582.cs │ ├── Issue7593.xaml │ ├── Issue7593.xaml.cs │ ├── Issue7606.cs │ ├── Issue7621.xaml │ ├── Issue7621.xaml.cs │ ├── Issue764.cs │ ├── Issue7678.cs │ ├── Issue7700.cs │ ├── Issue7701.cs │ ├── Issue7709.cs │ ├── Issue773.cs │ ├── Issue774.cs │ ├── Issue7742.cs │ ├── Issue7758.xaml │ ├── Issue7758.xaml.cs │ ├── Issue7773.cs │ ├── Issue7780.cs │ ├── Issue7789.xaml │ ├── Issue7789.xaml.cs │ ├── Issue7792.xaml │ ├── Issue7792.xaml.cs │ ├── Issue7803.xaml │ ├── Issue7803.xaml.cs │ ├── Issue7813.xaml │ ├── Issue7813.xaml.cs │ ├── Issue7817.xaml │ ├── Issue7817.xaml.cs │ ├── Issue7823.cs │ ├── Issue7825.cs │ ├── Issue7856.cs │ ├── Issue7856_1.xaml │ ├── Issue7856_1.xaml.cs │ ├── Issue7865.xaml │ ├── Issue7865.xaml.cs │ ├── Issue7875.cs │ ├── Issue7878.cs │ ├── Issue7886.xaml │ ├── Issue7886.xaml.cs │ ├── Issue7890.cs │ ├── Issue7898.cs │ ├── Issue7924.xaml │ ├── Issue7924.xaml.cs │ ├── Issue7943.xaml │ ├── Issue7943.xaml.cs │ ├── Issue7963.cs │ ├── Issue7992.cs │ ├── Issue7993.xaml │ ├── Issue7993.xaml.cs │ ├── Issue8004.cs │ ├── Issue8008.cs │ ├── Issue8087.cs │ ├── Issue8145.cs │ ├── Issue8148.cs │ ├── Issue8161.cs │ ├── Issue8167.cs │ ├── Issue8177.cs │ ├── Issue8186.cs │ ├── Issue8198.cs │ ├── Issue8200.cs │ ├── Issue8203.cs │ ├── Issue8207.xaml │ ├── Issue8207.xaml.cs │ ├── Issue8222.cs │ ├── Issue8262.cs │ ├── Issue8263.xaml │ ├── Issue8263.xaml.cs │ ├── Issue8272.cs │ ├── Issue8279.cs │ ├── Issue8291.cs │ ├── Issue8294.cs │ ├── Issue8308.xaml │ ├── Issue8308.xaml.cs │ ├── Issue8326.xaml │ ├── Issue8326.xaml.cs │ ├── Issue8345.cs │ ├── Issue8366.cs │ ├── Issue8392.cs │ ├── Issue8417.xaml │ ├── Issue8417.xaml.cs │ ├── Issue8449.xaml │ ├── Issue8449.xaml.cs │ ├── Issue8461.cs │ ├── Issue8503.cs │ ├── Issue8508.xaml │ ├── Issue8508.xaml.cs │ ├── Issue852.cs │ ├── Issue8526.cs │ ├── Issue8529.cs │ ├── Issue8529_1.xaml │ ├── Issue8529_1.xaml.cs │ ├── Issue8551.cs │ ├── Issue8557.xaml │ ├── Issue8557.xaml.cs │ ├── Issue8613.cs │ ├── Issue8638.xaml │ ├── Issue8638.xaml.cs │ ├── Issue8644.cs │ ├── Issue8647.cs │ ├── Issue8672.cs │ ├── Issue8689.xaml │ ├── Issue8689.xaml.cs │ ├── Issue8691.cs │ ├── Issue8693.cs │ ├── Issue8701.cs │ ├── Issue8715.xaml │ ├── Issue8715.xaml.cs │ ├── Issue8741.cs │ ├── Issue8743.cs │ ├── Issue8753.cs │ ├── Issue8766.cs │ ├── Issue8767.xaml │ ├── Issue8767.xaml.cs │ ├── Issue8777.cs │ ├── Issue8778.xaml │ ├── Issue8778.xaml.cs │ ├── Issue8779.xaml │ ├── Issue8779.xaml.cs │ ├── Issue8781.xaml │ ├── Issue8781.xaml.cs │ ├── Issue8782.xaml │ ├── Issue8782.xaml.cs │ ├── Issue8784.cs │ ├── Issue8787.cs │ ├── Issue8787.xaml │ ├── Issue8797.cs │ ├── Issue8801.cs │ ├── Issue8806.cs │ ├── Issue8814.cs │ ├── Issue8821.cs │ ├── Issue8833.xaml │ ├── Issue8833.xaml.cs │ ├── Issue8836.cs │ ├── Issue886.cs │ ├── Issue8870.cs │ ├── Issue889.cs │ ├── Issue8899.cs │ ├── Issue8902.xaml │ ├── Issue8902.xaml.cs │ ├── Issue892.cs │ ├── Issue8958.xaml │ ├── Issue8958.xaml.cs │ ├── Issue8964.cs │ ├── Issue8967.xaml │ ├── Issue8967.xaml.cs │ ├── Issue8973.cs │ ├── Issue8988.cs │ ├── Issue9006.cs │ ├── Issue9054.cs │ ├── Issue9087.cs │ ├── Issue9088.cs │ ├── Issue9092.cs │ ├── Issue9137.cs │ ├── Issue9143.cs │ ├── Issue9196.xaml │ ├── Issue9196.xaml.cs │ ├── Issue9210.cs │ ├── Issue9279.xaml │ ├── Issue9279.xaml.cs │ ├── Issue9305.xaml │ ├── Issue9305.xaml.cs │ ├── Issue9306.cs │ ├── Issue9326.xaml │ ├── Issue9326.xaml.cs │ ├── Issue9329.cs │ ├── Issue935.cs │ ├── Issue9355.cs │ ├── Issue9360.cs │ ├── Issue9417.xaml │ ├── Issue9417.xaml.cs │ ├── Issue9419.cs │ ├── Issue9428.cs │ ├── Issue9440.cs │ ├── Issue9451.cs │ ├── Issue9456.cs │ ├── Issue9555.xaml │ ├── Issue9555.xaml.cs │ ├── Issue9580.cs │ ├── Issue9588.xaml │ ├── Issue9588.xaml.cs │ ├── Issue9631.cs │ ├── Issue9646.xaml │ ├── Issue9646.xaml.cs │ ├── Issue968.cs │ ├── Issue9682.xaml │ ├── Issue9682.xaml.cs │ ├── Issue9686.cs │ ├── Issue9694.cs │ ├── Issue9711.xaml │ ├── Issue9711.xaml.cs │ ├── Issue973.cs │ ├── Issue9734.xaml │ ├── Issue9734.xaml.cs │ ├── Issue9735.xaml │ ├── Issue9735.xaml.cs │ ├── Issue9767.cs │ ├── Issue9771.xaml │ ├── Issue9771.xaml.cs │ ├── Issue9774.xaml │ ├── Issue9774.xaml.cs │ ├── Issue9783.xaml │ ├── Issue9783.xaml.cs │ ├── Issue9794.cs │ ├── Issue9827.xaml │ ├── Issue9827.xaml.cs │ ├── Issue9833.cs │ ├── Issue9929.cs │ ├── Issue9951.cs │ ├── Issue9962.cs │ ├── Issue9990.xaml │ ├── Issue9990.xaml.cs │ ├── LabelFormattedTextHtmlPadding.cs │ ├── LabelTextType.cs │ ├── LegacyComponents │ └── NonAppCompatSwitch.cs │ ├── ListViewNRE.cs │ ├── ListViewViewCellBinding.cs │ ├── MapsModalCrash.cs │ ├── ModalActivityIndicatorTest.cs │ ├── ModelContentPage.cs │ ├── MultipleClipToBounds.cs │ ├── NavPage.cs │ ├── NavPageOverrideUWP.cs │ ├── NavigationStackTests.cs │ ├── NestedCollectionViews.cs │ ├── PerformanceGallery │ ├── PerformanceDataManager.cs │ ├── PerformanceGallery.cs │ ├── PerformanceScenario.cs │ ├── PerformanceTracker.cs │ ├── PerformanceTrackerTemplate.cs │ ├── PerformanceTrackerWatcher.cs │ ├── PerformanceViewModel.cs │ └── Scenarios │ │ ├── ActivityIndicatorScenarios.cs │ │ ├── BoxViewScenarios.cs │ │ ├── ButtonScenarios.cs │ │ ├── DatePickerScenarios.cs │ │ ├── EditorScenarios.cs │ │ ├── EntryScenarios.cs │ │ ├── ImageScenarios.cs │ │ ├── LabelScenarios.cs │ │ ├── ListViewScenarios.cs │ │ ├── MapScenarios.cs │ │ ├── PickerScenarios.cs │ │ ├── ProgressBarScenarios.cs │ │ ├── SearchBarScenarios.cs │ │ ├── SliderScenarios.cs │ │ ├── StepperScenarios.cs │ │ ├── SwitchScenarios.cs │ │ ├── TableViewScenarios.cs │ │ ├── TimePickerScenarios.cs │ │ └── WebViewScenarios.cs │ ├── PlatformSpecifics_iOSTranslucentNavBarX.xaml │ ├── PlatformSpecifics_iOSTranslucentNavBarX.xaml.cs │ ├── RadioButtonTemplateFromStyle.cs │ ├── RectTest.xaml │ ├── RectTest.xaml.cs │ ├── RefreshViewTests.cs │ ├── RestartAppTest.cs │ ├── ScrollToGroup.cs │ ├── ScrollViewIsEnabled.cs │ ├── ScrollViewObjectDisposed.cs │ ├── ScrollViewOutOfBounds.cs │ ├── ShellAppearanceChange.cs │ ├── ShellBackButtonBehavior.cs │ ├── ShellFlyoutBackground.cs │ ├── ShellFlyoutContent.cs │ ├── ShellFlyoutContentOffest.cs │ ├── ShellFlyoutContentWithZeroMargin.cs │ ├── ShellFlyoutItemIsVisible.xaml │ ├── ShellFlyoutItemIsVisible.xaml.cs │ ├── ShellFlyoutSizing.cs │ ├── ShellGestures.cs │ ├── ShellInsets.cs │ ├── ShellItemIsVisible.cs │ ├── ShellModal.cs │ ├── ShellStoreTests.cs │ ├── ShellTitleView.cs │ ├── ShellWithCustomRendererDisabledAnimations.cs │ ├── StackLayoutIssue.cs │ ├── SwipeBackNavCrash.cs │ ├── TabbedPageTests.cs │ ├── TabbedPageWithList.cs │ ├── TestPages │ ├── QuickCollectNavigationPage.cs │ ├── ScreenshotConditionalApp.cs │ └── TestPages.cs │ ├── TransparentOverlayTests.cs │ ├── Unreported1.cs │ ├── ViewClipBoundsShouldUpdate.cs │ ├── ViewModel.cs │ ├── VisualControlsPage.xaml │ ├── VisualControlsPage.xaml.cs │ ├── VisualGallery.xaml │ ├── VisualGallery.xaml.cs │ ├── Xamarin.Forms.Controls.Issues.Shared.projitems │ ├── Xamarin.Forms.Controls.Issues.Shared.shproj │ ├── _Template.cs │ ├── _TemplateMarkup.xaml │ ├── _TemplateMarkup.xaml.cs │ └── issue3262.cs ├── Xamarin.Forms.Controls ├── App.cs ├── AppLifeCycle.cs ├── AppResources.xaml ├── Bugzilla44596SplashPage.cs ├── BuildNumber.txt ├── CompressedLayout.xaml ├── CompressedLayout.xaml.cs ├── ControlGalleryPages │ ├── AppearingGalleryPage.cs │ ├── AutomationIDGallery.cs │ ├── AutomationPropertiesGallery.cs │ ├── BehaviorsAndTriggers.xaml │ ├── BehaviorsAndTriggers.xaml.cs │ ├── CellForceUpdateSizeGalleryPage.cs │ ├── ClickGestureGalleryPage.cs │ ├── EntryReturnTypeGalleryPage.cs │ ├── FlowDirectionGallery.cs │ ├── LayoutAddPerformance.xaml │ ├── LayoutAddPerformance.xaml.cs │ ├── ListRefresh.cs │ ├── ListScrollTo.cs │ ├── ListViewSelectionColor.cs │ ├── NativeBindingGalleryPage.cs │ ├── NavBarTitleTestPage.cs │ ├── NestedNativeControlGalleryPage.cs │ ├── PanGestureGalleryPage.cs │ ├── PinchGestureTestPage.cs │ ├── SwipeGestureGalleryPage.cs │ ├── ToolbarItems.cs │ └── VisualGallery.cs ├── Controls │ ├── ColorPicker.cs │ ├── GH2691Controls.cs │ └── Issue3076Button.cs ├── CoreGallery.cs ├── CoreGalleryPages │ ├── ActivityIndicatorCoreGalleryPage.cs │ ├── ButtonCoreGalleryPage.cs │ ├── CarouselViewCoreGalleryPage.cs │ ├── CheckBoxCoreGalleryPage.cs │ ├── CollectionViewCoreGalleryPage.cs │ ├── CoreBoxViewGalleryPage.cs │ ├── CoreGalleryPage.cs │ ├── DatePickerCoreGalleryPage.cs │ ├── EditorCoreGalleryPage.cs │ ├── EntryCoreGalleryPage.cs │ ├── FrameCoreGalleryPage.cs │ ├── ImageButtonCoreGalleryPage.cs │ ├── ImageCoreGalleryPage.cs │ ├── KeyboardCoreGalleryPage.cs │ ├── LabelCoreGalleryPage.cs │ ├── ListViewCoreGalleryPage.cs │ ├── OpenGLViewCoreGalleryPage.cs │ ├── PickerCoreGalleryPage.cs │ ├── ProgressBarCoreGalleryPage.cs │ ├── RadioButtonCoreGalleryPage.cs │ ├── RefreshViewCoreGalleyPage.cs │ ├── SearchBarCoreGalleryPage.cs │ ├── SliderCoreGalleryPage.cs │ ├── StepperCoreGalleryPage.cs │ ├── SwipeViewCoreGalleryPage.cs │ ├── SwitchCoreGalleryPage.cs │ ├── TableViewCoreGalleryPage.cs │ ├── TimePickerCoreGalleryPage.cs │ ├── WebViewCoreGalleryPage.cs │ └── WkWebViewCoreGalleryPage.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Fonts │ ├── CuteFont-Regular.ttf │ ├── Dokdo-Regular.ttf │ ├── PTM55FT.ttf │ └── fa-regular-400.ttf ├── GalleryPages │ ├── AbsoluteLayoutGallery.cs │ ├── ActionSheetGallery.cs │ ├── AlertGallery.cs │ ├── AppLinkPageGallery.cs │ ├── AppThemeGalleries │ │ ├── AppThemeCodeGallery.cs │ │ ├── AppThemeGallery.cs │ │ ├── AppThemeXamlGallery.xaml │ │ ├── AppThemeXamlGallery.xaml.cs │ │ └── NamedPlatformColorGallery.cs │ ├── BackgroundImageGallery.cs │ ├── BindableLayoutGalleryPage.xaml │ ├── BindableLayoutGalleryPage.xaml.cs │ ├── BoundContentPage.cs │ ├── ButtonBorderBackgroundGalleryPage.xaml │ ├── ButtonBorderBackgroundGalleryPage.xaml.cs │ ├── ButtonGallery.cs │ ├── ButtonLayoutGalleryPage.xaml │ ├── ButtonLayoutGalleryPage.xaml.cs │ ├── CarouselPageGallery.cs │ ├── CellTypeList.cs │ ├── CellsGalleries │ │ ├── EntryCellListPage.cs │ │ ├── EntryCellTablePage.cs │ │ ├── ImageCellListPage.cs │ │ ├── ImageCellTablePage.cs │ │ ├── ProductViewCell.cs │ │ ├── SwitchCellListPage.cs │ │ ├── SwitchCellTablePage.cs │ │ ├── TextCellListPage.cs │ │ ├── TextCellTablePage.cs │ │ ├── UnEvenViewCellGallery.cs │ │ └── ViewCellGallery.cs │ ├── CharacterSpacingGallery.xaml │ ├── CharacterSpacingGallery.xaml.cs │ ├── ClipToBoundsGallery.cs │ ├── CollectionViewGalleries │ │ ├── AlternateLayoutGalleries │ │ │ ├── AlternateLayoutGallery.cs │ │ │ ├── StaggeredLayout.xaml │ │ │ └── StaggeredLayout.xaml.cs │ │ ├── CarouselViewGalleries │ │ │ ├── CarouselCodeGallery.cs │ │ │ ├── CarouselItemsGallery.cs │ │ │ ├── CarouselSnapGallery.cs │ │ │ ├── CarouselViewGallery.cs │ │ │ ├── CarouselXamlGallery.xaml │ │ │ ├── CarouselXamlGallery.xaml.cs │ │ │ ├── CollectionCarouselViewGallery.cs │ │ │ ├── EmptyCarouselGallery.xaml │ │ │ ├── EmptyCarouselGallery.xaml.cs │ │ │ ├── ExampleTemplateCarousel.xaml │ │ │ ├── ExampleTemplateCarousel.xaml.cs │ │ │ └── IndicatorCodeGallery.cs │ │ ├── CollectionModifier.cs │ │ ├── CollectionViewGallery.cs │ │ ├── CollectionViewGalleryTestItem.cs │ │ ├── DataTemplateGallery.cs │ │ ├── DataTemplateSelectorGalleries │ │ │ ├── VariedSizeDataTemplateSelectorGallery.xaml │ │ │ └── VariedSizeDataTemplateSelectorGallery.xaml.cs │ │ ├── DataTemplateSelectorGallery.xaml │ │ ├── DataTemplateSelectorGallery.xaml.cs │ │ ├── DefaultTextGallery.cs │ │ ├── DemoFilteredItemSource.cs │ │ ├── EmptyViewGalleries │ │ │ ├── EmptyViewGallery.cs │ │ │ ├── EmptyViewGalleryFilterInfo.cs │ │ │ ├── EmptyViewLoadSimulateGallery.xaml │ │ │ ├── EmptyViewLoadSimulateGallery.xaml.cs │ │ │ ├── EmptyViewNullGallery.xaml │ │ │ ├── EmptyViewNullGallery.xaml.cs │ │ │ ├── EmptyViewRTLGallery.xaml │ │ │ ├── EmptyViewRTLGallery.xaml.cs │ │ │ ├── EmptyViewStringGallery.xaml │ │ │ ├── EmptyViewStringGallery.xaml.cs │ │ │ ├── EmptyViewSwapGallery.xaml │ │ │ ├── EmptyViewSwapGallery.xaml.cs │ │ │ ├── EmptyViewTemplateGallery.xaml │ │ │ ├── EmptyViewTemplateGallery.xaml.cs │ │ │ ├── EmptyViewViewGallery.xaml │ │ │ └── EmptyViewViewGallery.xaml.cs │ │ ├── EnumSelector.cs │ │ ├── ExampleTemplates.cs │ │ ├── FilterCollectionView.xaml │ │ ├── FilterCollectionView.xaml.cs │ │ ├── GroupingGalleries │ │ │ ├── BasicGrouping.xaml │ │ │ ├── BasicGrouping.xaml.cs │ │ │ ├── GridGrouping.xaml │ │ │ ├── GridGrouping.xaml.cs │ │ │ ├── GroupingGallery.cs │ │ │ ├── GroupingNoTemplates.xaml │ │ │ ├── GroupingNoTemplates.xaml.cs │ │ │ ├── GroupingPlusSelection.xaml │ │ │ ├── GroupingPlusSelection.xaml.cs │ │ │ ├── MeasureFirstStrategy.xaml │ │ │ ├── MeasureFirstStrategy.xaml.cs │ │ │ ├── ObservableGrouping.cs │ │ │ ├── SomeEmptyGroups.xaml │ │ │ ├── SomeEmptyGroups.xaml.cs │ │ │ ├── SwitchGrouping.xaml │ │ │ ├── SwitchGrouping.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── HeaderFooterGalleries │ │ │ ├── FooterOnlyString.xaml │ │ │ ├── FooterOnlyString.xaml.cs │ │ │ ├── HeaderFooterGallery.cs │ │ │ ├── HeaderFooterGrid.xaml │ │ │ ├── HeaderFooterGrid.xaml.cs │ │ │ ├── HeaderFooterGridHorizontal.xaml │ │ │ ├── HeaderFooterGridHorizontal.xaml.cs │ │ │ ├── HeaderFooterString.xaml │ │ │ ├── HeaderFooterString.xaml.cs │ │ │ ├── HeaderFooterTemplate.xaml │ │ │ ├── HeaderFooterTemplate.xaml.cs │ │ │ ├── HeaderFooterView.xaml │ │ │ └── HeaderFooterView.xaml.cs │ │ ├── IndexParser.cs │ │ ├── ItemAdder.cs │ │ ├── ItemInsert.cs │ │ ├── ItemMover.cs │ │ ├── ItemRemover.cs │ │ ├── ItemReplacer.cs │ │ ├── ItemSizeGalleries │ │ │ ├── ChatExample.xaml │ │ │ ├── ChatExample.xaml.cs │ │ │ ├── DynamicItemSizeGallery.cs │ │ │ ├── ItemsSizeGallery.cs │ │ │ └── VariableSizeTemplateGridGallery.cs │ │ ├── ItemsSourceGenerator.cs │ │ ├── MultiItemAdder.cs │ │ ├── MultiItemMover.cs │ │ ├── MultiItemRemover.cs │ │ ├── MultiItemReplacer.cs │ │ ├── MultiTestObservableCollection.cs │ │ ├── MultiTestObservableCollectionModifier.cs │ │ ├── NestedGalleries │ │ │ ├── NestedCollectionViewGallery.xaml │ │ │ └── NestedCollectionViewGallery.xaml.cs │ │ ├── ObservableCodeCollectionViewGallery.cs │ │ ├── ObservableCollectionGallery.cs │ │ ├── ObservableCollectionModifier.cs │ │ ├── ObservableCollectionResetGallery.cs │ │ ├── ObservableMultiItemCollectionViewGallery.cs │ │ ├── PositionControl.cs │ │ ├── PropagateCodeGallery.cs │ │ ├── PropagationGallery.cs │ │ ├── Resetter.cs │ │ ├── ScrollModeGalleries │ │ │ ├── ScrollModeGallery.cs │ │ │ ├── ScrollModeTestGallery.xaml │ │ │ └── ScrollModeTestGallery.xaml.cs │ │ ├── ScrollToCodeGallery.cs │ │ ├── ScrollToGalleries │ │ │ ├── ScrollToGroup.xaml │ │ │ └── ScrollToGroup.xaml.cs │ │ ├── ScrollToGallery.cs │ │ ├── ScrollToIndexControl.cs │ │ ├── ScrollToItemControl.cs │ │ ├── SelectionGalleries │ │ │ ├── BoundSelectionModel.cs │ │ │ ├── FilterSelection.xaml │ │ │ ├── FilterSelection.xaml.cs │ │ │ ├── MultipleBoundSelection.xaml │ │ │ ├── MultipleBoundSelection.xaml.cs │ │ │ ├── PreselectedItemGallery.xaml │ │ │ ├── PreselectedItemGallery.xaml.cs │ │ │ ├── PreselectedItemsGallery.xaml │ │ │ ├── PreselectedItemsGallery.xaml.cs │ │ │ ├── SelectionChangedCommandParameter.xaml │ │ │ ├── SelectionChangedCommandParameter.xaml.cs │ │ │ ├── SelectionGallery.cs │ │ │ ├── SelectionHelpers.cs │ │ │ ├── SelectionModeGallery.xaml │ │ │ ├── SelectionModeGallery.xaml.cs │ │ │ ├── SelectionSynchronization.xaml │ │ │ ├── SelectionSynchronization.xaml.cs │ │ │ ├── SingleBoundSelection.xaml │ │ │ └── SingleBoundSelection.xaml.cs │ │ ├── SnapPointsCodeGallery.cs │ │ ├── SnapPointsGallery.cs │ │ ├── SpacingGalleries │ │ │ ├── ItemsSpacingGallery.cs │ │ │ ├── SpacingGallery.cs │ │ │ └── SpacingModifier.cs │ │ ├── SpanSetter.cs │ │ ├── TemplateCodeCollectionViewGallery.cs │ │ ├── TemplateCodeCollectionViewGridGallery.cs │ │ ├── TextCodeCollectionViewGallery.cs │ │ └── TextCodeCollectionViewGridGallery.cs │ ├── ControlTemplatePage.cs │ ├── ControlTemplateXamlPage.xaml │ ├── ControlTemplateXamlPage.xaml.cs │ ├── DateTimePickerGalleries │ │ ├── DatePage.xaml │ │ ├── DatePage.xaml.cs │ │ ├── DateTimePickerGallery.xaml │ │ ├── DateTimePickerGallery.xaml.cs │ │ ├── ILocalize.cs │ │ ├── KeyboardPage.xaml │ │ ├── KeyboardPage.xaml.cs │ │ ├── TimePage.xaml │ │ └── TimePage.xaml.cs │ ├── DisposeGallery.cs │ ├── DragAndDropGalleries │ │ ├── DragAndDropBetweenLayouts.xaml │ │ ├── DragAndDropBetweenLayouts.xaml.cs │ │ ├── DragAndDropEvents.xaml │ │ ├── DragAndDropEvents.xaml.cs │ │ ├── DragAndDropGallery.cs │ │ ├── DragPaths.xaml │ │ ├── DragPaths.xaml.cs │ │ ├── EnablingAndDisablingGestureTests.cs │ │ └── VariousDragAndDropPermutations.cs │ ├── DynamicViewGallery.cs │ ├── EditableList.cs │ ├── EditorGallery.cs │ ├── EmbeddedFonts.xaml │ ├── EmbeddedFonts.xaml.cs │ ├── EntryGallery.cs │ ├── FlyoutPageTabletPage.cs │ ├── FontImageSourceGallery.cs │ ├── FrameGallery.cs │ ├── GalleryBuilder.cs │ ├── GifGallery.cs │ ├── GradientGalleries │ │ ├── AnimateBrushGallery.xaml │ │ ├── AnimateBrushGallery.xaml.cs │ │ ├── BindableBrushGallery.xaml │ │ ├── BindableBrushGallery.xaml.cs │ │ ├── ColorPicker.xaml │ │ ├── ColorPicker.xaml.cs │ │ ├── CssGradientsGallery.xaml │ │ ├── CssGradientsGallery.xaml.cs │ │ ├── CssGradientsPlayground.xaml │ │ ├── CssGradientsPlayground.xaml.cs │ │ ├── GradientBrushDefaultOffsetGallery.xaml │ │ ├── GradientBrushDefaultOffsetGallery.xaml.cs │ │ ├── GradientNavigationPageGallery.xaml │ │ ├── GradientNavigationPageGallery.xaml.cs │ │ ├── GradientStyles.css │ │ ├── GradientTabsGallery.xaml │ │ ├── GradientTabsGallery.xaml.cs │ │ ├── GradientViewsGallery.xaml │ │ ├── GradientViewsGallery.xaml.cs │ │ ├── GradientsGallery.cs │ │ ├── LinearGradientExplorerGallery.xaml │ │ ├── LinearGradientExplorerGallery.xaml.cs │ │ ├── LinearGradientPointsGallery.xaml │ │ ├── LinearGradientPointsGallery.xaml.cs │ │ ├── RadialGradientExplorerGallery.xaml │ │ ├── RadialGradientExplorerGallery.xaml.cs │ │ ├── ShapesBrushGallery.xaml │ │ ├── ShapesBrushGallery.xaml.cs │ │ ├── SolidColorBrushConverterGallery.xaml │ │ ├── SolidColorBrushConverterGallery.xaml.cs │ │ ├── UpdateGradientColorGallery.xaml │ │ ├── UpdateGradientColorGallery.xaml.cs │ │ ├── VisualGradientViewsGallery.xaml │ │ └── VisualGradientViewsGallery.xaml.cs │ ├── GridGallery.cs │ ├── GroupedListActionsGallery.cs │ ├── GroupedListContactsGallery.cs │ ├── ImageGallery.cs │ ├── ImageLoadingGallery.cs │ ├── ImageSourcesGallery.cs │ ├── IndicatorViewGalleries │ │ ├── IndicatorGalleries.cs │ │ ├── IndicatorsSample.xaml │ │ ├── IndicatorsSample.xaml.cs │ │ ├── IndicatorsSampleMaximumVisible.xaml │ │ └── IndicatorsSampleMaximumVisible.xaml.cs │ ├── InputIntentGallery.cs │ ├── LabelGallery.cs │ ├── LayoutOptionsGallery.cs │ ├── LayoutPerformanceGallery.cs │ ├── LineBreakModeGallery.cs │ ├── ListPage.cs │ ├── ListViewDemoPage.cs │ ├── MacOSTestGallery.cs │ ├── MacTwitterDemo.xaml │ ├── MacTwitterDemo.xaml.cs │ ├── MapElementsGallery.xaml │ ├── MapElementsGallery.xaml.cs │ ├── MapGallery.xaml │ ├── MapGallery.xaml.cs │ ├── MapWithItemsSourceGallery.xaml │ ├── MapWithItemsSourceGallery.xaml.cs │ ├── MaterialActivityIndicatorGallery.cs │ ├── MaterialEntryGalleryPage.cs │ ├── MaterialProgressBarGallery.cs │ ├── MemoryLeakGallery.cs │ ├── MinimumSizeGallery.cs │ ├── MultiGallery.cs │ ├── NavigationBarGallery.cs │ ├── NavigationPropertiesGallery.cs │ ├── OpenGLGalleries │ │ ├── AdvancedOpenGLGallery.cs │ │ └── BasicOpenGLGallery.cs │ ├── PageWithTransparentBkgnd.xaml │ ├── PageWithTransparentBkgnd.xaml.cs │ ├── PickerGallery.cs │ ├── PlatformSpecificsGalleries │ │ ├── ApplicationAndroid.cs │ │ ├── EntryPageAndroid.cs │ │ ├── EntryPageiOS.cs │ │ ├── HomeIndicatorPageiOS.cs │ │ ├── LargeTitlesPageiOS.cs │ │ ├── MasterDetailPageWindows.cs │ │ ├── MasterDetailPageiOS.cs │ │ ├── ModalFormSheetPageiOS.cs │ │ ├── NavigationPageWindows.cs │ │ ├── NavigationPageiOS.cs │ │ ├── RefreshViewWindows.cs │ │ ├── SafeAreaPageiOS.cs │ │ ├── SearchBariOS.cs │ │ ├── TabbedPageAndroid.cs │ │ ├── TabbedPageWindows.cs │ │ ├── TabbedPageiOS.cs │ │ ├── VisualElementiOS.cs │ │ └── WindowsPlatformSpecificsGalleryHelpers.cs │ ├── PlatformSpecificsGallery.cs │ ├── PlatformTestsGallery │ │ ├── CategoryFilter.cs │ │ ├── PlatformTestsConsole.xaml │ │ ├── PlatformTestsConsole.xaml.cs │ │ └── TestNameContainsFilter.cs │ ├── ProgressBarGallery.cs │ ├── RadioButtonGalleries │ │ ├── ContentProperties.xaml │ │ ├── ContentProperties.xaml.cs │ │ ├── RadioButtonContentGallery.xaml │ │ ├── RadioButtonContentGallery.xaml.cs │ │ ├── RadioButtonGalleries.cs │ │ ├── RadioButtonGroupBindingGallery.xaml │ │ ├── RadioButtonGroupBindingGallery.xaml.cs │ │ ├── RadioButtonGroupGallery.xaml │ │ ├── RadioButtonGroupGallery.xaml.cs │ │ ├── RadioButtonGroupGalleryPage.xaml │ │ ├── RadioButtonGroupGalleryPage.xaml.cs │ │ ├── ScatteredRadioButtonGallery.xaml │ │ ├── ScatteredRadioButtonGallery.xaml.cs │ │ ├── TemplateFromStyle.xaml │ │ └── TemplateFromStyle.xaml.cs │ ├── RefreshViewGalleries │ │ ├── IsEnabledRefreshViewGallery.xaml │ │ ├── IsEnabledRefreshViewGallery.xaml.cs │ │ ├── RefreshCarouselViewGallery.xaml │ │ ├── RefreshCarouselViewGallery.xaml.cs │ │ ├── RefreshCollectionViewGallery.xaml │ │ ├── RefreshCollectionViewGallery.xaml.cs │ │ ├── RefreshLayoutGallery.xaml │ │ ├── RefreshLayoutGallery.xaml.cs │ │ ├── RefreshLayoutMarginGallery.xaml │ │ ├── RefreshLayoutMarginGallery.xaml.cs │ │ ├── RefreshListViewGallery.xaml │ │ ├── RefreshListViewGallery.xaml.cs │ │ ├── RefreshScrollViewGallery.xaml │ │ ├── RefreshScrollViewGallery.xaml.cs │ │ ├── RefreshViewGallery.cs │ │ ├── RefreshWebViewGallery.xaml │ │ └── RefreshWebViewGallery.xaml.cs │ ├── RelativeLayoutGallery.cs │ ├── ScaleRotate.cs │ ├── ScrollGallery.cs │ ├── SearchBarGallery.cs │ ├── SettingsPage.cs │ ├── ShapesGalleries │ │ ├── AddRemoveClipGallery.cs │ │ ├── AnimateShapeGallery.cs │ │ ├── AutoSizeShapesGallery.xaml │ │ ├── AutoSizeShapesGallery.xaml.cs │ │ ├── ClipCornerRadiusGallery.xaml │ │ ├── ClipCornerRadiusGallery.xaml.cs │ │ ├── ClipGallery.xaml │ │ ├── ClipGallery.xaml.cs │ │ ├── ClipPerformanceGallery.cs │ │ ├── ClipViewsGallery.xaml │ │ ├── ClipViewsGallery.xaml.cs │ │ ├── EllipseGallery.xaml │ │ ├── EllipseGallery.xaml.cs │ │ ├── LineCapGallery.xaml │ │ ├── LineCapGallery.xaml.cs │ │ ├── LineGallery.xaml │ │ ├── LineGallery.xaml.cs │ │ ├── LineJoinGallery.xaml │ │ ├── LineJoinGallery.xaml.cs │ │ ├── PathAspectGallery.xaml │ │ ├── PathAspectGallery.xaml.cs │ │ ├── PathGallery.xaml │ │ ├── PathGallery.xaml.cs │ │ ├── PathLayoutOptionsGallery.xaml │ │ ├── PathLayoutOptionsGallery.xaml.cs │ │ ├── PathTransformStringGallery.xaml │ │ ├── PathTransformStringGallery.xaml.cs │ │ ├── PolygonGallery.xaml │ │ ├── PolygonGallery.xaml.cs │ │ ├── PolylineGallery.xaml │ │ ├── PolylineGallery.xaml.cs │ │ ├── RectangleGallery.xaml │ │ ├── RectangleGallery.xaml.cs │ │ ├── ShapeAppThemeGallery.xaml │ │ ├── ShapeAppThemeGallery.xaml.cs │ │ ├── ShapesGallery.cs │ │ ├── TransformPlaygroundGallery.xaml │ │ └── TransformPlaygroundGallery.xaml.cs │ ├── ShowModalWithTransparentBkgndGalleryPage.cs │ ├── SliderGallery.cs │ ├── StackLayoutGallery.cs │ ├── StepperGallery.cs │ ├── StyleGallery.cs │ ├── StyleXamlGallery.xaml │ ├── StyleXamlGallery.xaml.cs │ ├── SwipeViewGalleries │ │ ├── AddRemoveSwipeItemsGallery.cs │ │ ├── BasicSwipeGallery.xaml │ │ ├── BasicSwipeGallery.xaml.cs │ │ ├── CustomSizeSwipeViewGallery.xaml │ │ ├── CustomSizeSwipeViewGallery.xaml.cs │ │ ├── CustomSwipeItemGallery.cs │ │ ├── CustomSwipeItemViewGallery.xaml │ │ ├── CustomSwipeItemViewGallery.xaml.cs │ │ ├── CustomizeSwipeItemGallery.cs │ │ ├── HorizontalSwipeThresholdGallery.xaml │ │ ├── HorizontalSwipeThresholdGallery.xaml.cs │ │ ├── NoIconTextSwipeItemGallery.cs │ │ ├── OpenCloseSwipeGallery.cs │ │ ├── PositionGallery.cs │ │ ├── ResourceSwipeItemsGallery.xaml │ │ ├── ResourceSwipeItemsGallery.xaml.cs │ │ ├── SwipeBehaviorOnInvokedGallery.cs │ │ ├── SwipeBindableLayoutGallery.xaml │ │ ├── SwipeBindableLayoutGallery.xaml.cs │ │ ├── SwipeCarouselViewGallery.xaml │ │ ├── SwipeCarouselViewGallery.xaml.cs │ │ ├── SwipeCollectionViewGallery.cs │ │ ├── SwipeHorizontalCollectionViewGallery.xaml │ │ ├── SwipeHorizontalCollectionViewGallery.xaml.cs │ │ ├── SwipeItemIconGallery.cs │ │ ├── SwipeItemIsEnabledGallery.cs │ │ ├── SwipeItemIsVisibleGallery.cs │ │ ├── SwipeItemPositionGallery.xaml │ │ ├── SwipeItemPositionGallery.xaml.cs │ │ ├── SwipeItemSizeGallery.xaml │ │ ├── SwipeItemSizeGallery.xaml.cs │ │ ├── SwipeItemViewIsEnabledGallery.cs │ │ ├── SwipeItemViewPositionGallery.xaml │ │ ├── SwipeItemViewPositionGallery.xaml.cs │ │ ├── SwipeItemsDisposeGallery.xaml │ │ ├── SwipeItemsDisposeGallery.xaml.cs │ │ ├── SwipeListViewGallery.xaml │ │ ├── SwipeListViewGallery.xaml.cs │ │ ├── SwipeThresholdCustomSwipeItemGallery.xaml │ │ ├── SwipeThresholdCustomSwipeItemGallery.xaml.cs │ │ ├── SwipeThresholdGallery.cs │ │ ├── SwipeTransitionModeGallery.cs │ │ ├── SwipeVerticalCollectionViewGallery.xaml │ │ ├── SwipeVerticalCollectionViewGallery.xaml.cs │ │ ├── SwipeViewBindingContextGallery.xaml │ │ ├── SwipeViewBindingContextGallery.xaml.cs │ │ ├── SwipeViewEventsGallery.cs │ │ ├── SwipeViewGallery.cs │ │ ├── SwipeViewGestureRecognizerGallery.xaml │ │ ├── SwipeViewGestureRecognizerGallery.xaml.cs │ │ ├── SwipeViewMarginGallery.xaml │ │ ├── SwipeViewMarginGallery.xaml.cs │ │ ├── SwipeViewVisualStatesCollectionGallery.xaml │ │ ├── SwipeViewVisualStatesCollectionGallery.xaml.cs │ │ ├── VerticalSwipeThresholdGallery.xaml │ │ └── VerticalSwipeThresholdGallery.xaml.cs │ ├── SwitchGallery.cs │ ├── TableViewGallery.cs │ ├── TemplatedCarouselGallery.cs │ ├── TemplatedTabbedGallery.cs │ ├── TitleView.xaml │ ├── TitleView.xaml.cs │ ├── UnevenListGallery.cs │ ├── VisualStateManagerGalleries │ │ ├── ButtonDisabledStatesGallery.xaml │ │ ├── ButtonDisabledStatesGallery.xaml.cs │ │ ├── CodeOnlyExample.cs │ │ ├── CompareStateTriggerGallery.xaml │ │ ├── CompareStateTriggerGallery.xaml.cs │ │ ├── DatePickerDisabledStatesGallery.xaml │ │ ├── DatePickerDisabledStatesGallery.xaml.cs │ │ ├── DeviceStateTriggerGallery.xaml │ │ ├── DeviceStateTriggerGallery.xaml.cs │ │ ├── DisabledStatesGallery.cs │ │ ├── DualScreenStateTriggerGallery.xaml │ │ ├── DualScreenStateTriggerGallery.xaml.cs │ │ ├── EditorDisabledStatesGallery.xaml │ │ ├── EditorDisabledStatesGallery.xaml.cs │ │ ├── EntryDisabledStatesGallery.xaml │ │ ├── EntryDisabledStatesGallery.xaml.cs │ │ ├── MinWindowHeightAdaptiveTriggerGallery.xaml │ │ ├── MinWindowHeightAdaptiveTriggerGallery.xaml.cs │ │ ├── MinWindowWidthAdaptiveTriggerGallery.xaml │ │ ├── MinWindowWidthAdaptiveTriggerGallery.xaml.cs │ │ ├── OnIdiomExample.xaml │ │ ├── OnIdiomExample.xaml.cs │ │ ├── OnPlatformExample.xaml │ │ ├── OnPlatformExample.xaml.cs │ │ ├── OrientationStateTriggerGallery.xaml │ │ ├── OrientationStateTriggerGallery.xaml.cs │ │ ├── PickerDisabledStatesGallery.xaml │ │ ├── PickerDisabledStatesGallery.xaml.cs │ │ ├── SearchBarDisabledStatesGallery.xaml │ │ ├── SearchBarDisabledStatesGallery.xaml.cs │ │ ├── StateTriggerEventsGallery.xaml │ │ ├── StateTriggerEventsGallery.xaml.cs │ │ ├── StateTriggerGallery.cs │ │ ├── StateTriggerToggleGallery.xaml │ │ ├── StateTriggerToggleGallery.xaml.cs │ │ ├── StateTriggersDirectlyOnElements.xaml │ │ ├── StateTriggersDirectlyOnElements.xaml.cs │ │ ├── TimePickerDisabledStatesGallery.xaml │ │ ├── TimePickerDisabledStatesGallery.xaml.cs │ │ ├── ValidationExample.xaml │ │ ├── ValidationExample.xaml.cs │ │ ├── VisualStateManagerGallery.cs │ │ ├── VisualStateSetterTarget.xaml │ │ ├── VisualStateSetterTarget.xaml.cs │ │ ├── VisualStatesDirectlyOnElements.xaml │ │ └── VisualStatesDirectlyOnElements.xaml.cs │ ├── WebViewGallery.cs │ ├── XamlNativeViews.xaml │ ├── XamlNativeViews.xaml.cs │ ├── XamlPage.xaml │ ├── XamlPage.xaml.cs │ └── crimson.jpg ├── HanselForms │ ├── BaseView.cs │ ├── BlogPage.xaml │ ├── BlogPage.xaml.cs │ ├── HBaseViewModel.cs │ ├── MyAbout.xaml │ ├── MyAbout.xaml.cs │ ├── RootPage.cs │ ├── TwitterPage.xaml │ ├── TwitterPage.xaml.cs │ └── WebsiteView.cs ├── Helpers │ ├── ITestCloudService.cs │ └── IWindowNavigation.cs ├── IMultiWindowService.cs ├── IRegistrarValidationService.cs ├── ISecondaryWindowService.cs ├── LegacyRepro │ ├── Page1.xaml │ ├── Page1.xaml.cs │ ├── SampleViewCell.xaml │ └── SampleViewCell.xaml.cs ├── MainPageLifeCycleTests.cs ├── NavReproApp.cs ├── Nuget.Build.targets ├── NullableThicknessConverter.cs ├── Properties │ └── AssemblyInfo.cs ├── RootPages │ ├── CaseTenPage.cs │ ├── Issue465Page.cs │ ├── RootContentPage.cs │ ├── RootMDPNavigationContentPage.cs │ ├── RootMDPNavigationTabbedContentPage.cs │ ├── RootNavigationContentPage.cs │ ├── RootNavigationManyTabbedPage.cs │ ├── RootNavigationTabbedContentPage.cs │ ├── RootTabbedContentPage.cs │ ├── RootTabbedMDPNavigationContentPage.cs │ ├── RootTabbedManyNavigationContentPage.cs │ ├── RootTabbedNavigationContentPage.cs │ ├── SwapHierachyStackLayout.cs │ └── TabbedNavPage.cs ├── ShellContentTest.xaml ├── ShellContentTest.xaml.cs ├── SimpleApp.cs ├── Source.Build.targets ├── TabIndexTest │ ├── DayView.xaml │ ├── DayView.xaml.cs │ ├── DaysOfWeekView.xaml │ ├── DaysOfWeekView.xaml.cs │ ├── TabIndex.xaml │ ├── TabIndex.xaml.cs │ └── ViewModels.cs ├── TestCases.cs ├── Tests │ ├── ControlGalleryTestListener.cs │ ├── CrossPlatformTestFixture.cs │ ├── CrossPlatformTests.cs │ ├── IPlatformTestSettings.cs │ ├── ITestingPlatformService.cs │ ├── ObjectDisposedExceptionTests.cs │ ├── PlatformTestRunner.cs │ └── TestClasses │ │ ├── CustomButton.cs │ │ └── _9431Model.cs ├── ViewContainers │ ├── EventViewContainer.cs │ ├── LayeredViewContainer.cs │ ├── MultiBindingHack.cs │ ├── StateViewContainer.cs │ ├── ValueViewContainer.cs │ └── ViewContainer.cs ├── XamStore │ ├── Controls │ │ ├── FlyoutFooter.xaml │ │ ├── FlyoutFooter.xaml.cs │ │ ├── FlyoutHeader.xaml │ │ └── FlyoutHeader.xaml.cs │ ├── Icons.cs │ ├── StoreShell.xaml │ ├── StoreShell.xaml.cs │ ├── Styles │ │ ├── Global.css │ │ ├── Global.xaml │ │ └── HomeView.css │ └── Views │ │ ├── DemoShellPage.xaml │ │ ├── DemoShellPage.xaml.cs │ │ ├── SearchHandlerPage.cs │ │ └── StorePages.cs ├── Xamarin.Forms.Controls.csproj ├── blank.config └── coffee.png ├── Xamarin.Forms.Core.Android.UITests ├── BaseViewContainerRemoteAndroid.cs ├── Makefile ├── PlatformTests │ └── DisplayAlertUITestsAndroid.cs └── Xamarin.Forms.Core.Android.UITests.csproj ├── Xamarin.Forms.Core.Design ├── AttributeTableBuilder.cs ├── EasingDesignTypeConverter.cs ├── EnumConverter.cs ├── ItemsLayoutDesignTypeConverter.cs ├── KeyboardDesignTypeConverter.cs ├── NonExclusiveEnumConverter.cs ├── Properties │ └── AssemblyInfo.cs ├── RegisterMetadata.cs ├── VisualDesignTypeConverter.cs ├── Xamarin.Forms.Core.Design.csproj └── toolbox │ ├── Xamarin.Forms.toolbox.xml │ └── icons │ ├── mac │ ├── cell-EntryCell-16.png │ ├── cell-EntryCell-16@2x.png │ ├── cell-EntryCell-16~dark.png │ ├── cell-EntryCell-16~dark@2x.png │ ├── cell-EntryCell-16~dark~sel.png │ ├── cell-EntryCell-16~dark~sel@2x.png │ ├── cell-EntryCell-16~sel.png │ ├── cell-EntryCell-16~sel@2x.png │ ├── cell-ImageCell-16.png │ ├── cell-ImageCell-16@2x.png │ ├── cell-ImageCell-16~dark.png │ ├── cell-ImageCell-16~dark@2x.png │ ├── cell-ImageCell-16~dark~sel.png │ ├── cell-ImageCell-16~dark~sel@2x.png │ ├── cell-ImageCell-16~sel.png │ ├── cell-ImageCell-16~sel@2x.png │ ├── cell-SwitchCell-16.png │ ├── cell-SwitchCell-16@2x.png │ ├── cell-SwitchCell-16~dark.png │ ├── cell-SwitchCell-16~dark@2x.png │ ├── cell-SwitchCell-16~dark~sel.png │ ├── cell-SwitchCell-16~dark~sel@2x.png │ ├── cell-SwitchCell-16~sel.png │ ├── cell-SwitchCell-16~sel@2x.png │ ├── cell-TextCell-16.png │ ├── cell-TextCell-16@2x.png │ ├── cell-TextCell-16~dark.png │ ├── cell-TextCell-16~dark@2x.png │ ├── cell-TextCell-16~dark~sel.png │ ├── cell-TextCell-16~dark~sel@2x.png │ ├── cell-TextCell-16~sel.png │ ├── cell-TextCell-16~sel@2x.png │ ├── cell-ViewCell-16.png │ ├── cell-ViewCell-16@2x.png │ ├── cell-ViewCell-16~dark.png │ ├── cell-ViewCell-16~dark@2x.png │ ├── cell-ViewCell-16~dark~sel.png │ ├── cell-ViewCell-16~dark~sel@2x.png │ ├── cell-ViewCell-16~sel.png │ ├── cell-ViewCell-16~sel@2x.png │ ├── layout-AbsoluteLayout-16.png │ ├── layout-AbsoluteLayout-16@2x.png │ ├── layout-AbsoluteLayout-16~dark.png │ ├── layout-AbsoluteLayout-16~dark@2x.png │ ├── layout-AbsoluteLayout-16~dark~sel.png │ ├── layout-AbsoluteLayout-16~dark~sel@2x.png │ ├── layout-AbsoluteLayout-16~sel.png │ ├── layout-AbsoluteLayout-16~sel@2x.png │ ├── layout-ContentView-16.png │ ├── layout-ContentView-16@2x.png │ ├── layout-ContentView-16~dark.png │ ├── layout-ContentView-16~dark@2x.png │ ├── layout-ContentView-16~dark~sel.png │ ├── layout-ContentView-16~dark~sel@2x.png │ ├── layout-ContentView-16~sel.png │ ├── layout-ContentView-16~sel@2x.png │ ├── layout-FlexLayout-16.png │ ├── layout-FlexLayout-16@2x.png │ ├── layout-FlexLayout-16~dark.png │ ├── layout-FlexLayout-16~dark@2x.png │ ├── layout-FlexLayout-16~dark~sel.png │ ├── layout-FlexLayout-16~dark~sel@2x.png │ ├── layout-FlexLayout-16~sel.png │ ├── layout-FlexLayout-16~sel@2x.png │ ├── layout-Frame-16.png │ ├── layout-Frame-16@2x.png │ ├── layout-Frame-16~dark.png │ ├── layout-Frame-16~dark@2x.png │ ├── layout-Frame-16~dark~sel.png │ ├── layout-Frame-16~dark~sel@2x.png │ ├── layout-Frame-16~sel.png │ ├── layout-Frame-16~sel@2x.png │ ├── layout-Grid-16.png │ ├── layout-Grid-16@2x.png │ ├── layout-Grid-16~dark.png │ ├── layout-Grid-16~dark@2x.png │ ├── layout-Grid-16~dark~sel.png │ ├── layout-Grid-16~dark~sel@2x.png │ ├── layout-Grid-16~sel.png │ ├── layout-Grid-16~sel@2x.png │ ├── layout-RelativeLayout-16.png │ ├── layout-RelativeLayout-16@2x.png │ ├── layout-RelativeLayout-16~dark.png │ ├── layout-RelativeLayout-16~dark@2x.png │ ├── layout-RelativeLayout-16~dark~sel.png │ ├── layout-RelativeLayout-16~dark~sel@2x.png │ ├── layout-RelativeLayout-16~sel.png │ ├── layout-RelativeLayout-16~sel@2x.png │ ├── layout-ScrollView-16.png │ ├── layout-ScrollView-16@2x.png │ ├── layout-ScrollView-16~dark.png │ ├── layout-ScrollView-16~dark@2x.png │ ├── layout-ScrollView-16~dark~sel.png │ ├── layout-ScrollView-16~dark~sel@2x.png │ ├── layout-ScrollView-16~sel.png │ ├── layout-ScrollView-16~sel@2x.png │ ├── layout-StackLayout-16.png │ ├── layout-StackLayout-16@2x.png │ ├── layout-StackLayout-16~dark.png │ ├── layout-StackLayout-16~dark@2x.png │ ├── layout-StackLayout-16~dark~sel.png │ ├── layout-StackLayout-16~dark~sel@2x.png │ ├── layout-StackLayout-16~sel.png │ ├── layout-StackLayout-16~sel@2x.png │ ├── view-ActivityIndicator-16.png │ ├── view-ActivityIndicator-16@2x.png │ ├── view-ActivityIndicator-16~dark.png │ ├── view-ActivityIndicator-16~dark@2x.png │ ├── view-ActivityIndicator-16~dark~sel.png │ ├── view-ActivityIndicator-16~dark~sel@2x.png │ ├── view-ActivityIndicator-16~sel.png │ ├── view-ActivityIndicator-16~sel@2x.png │ ├── view-BoxView-16.png │ ├── view-BoxView-16@2x.png │ ├── view-BoxView-16~dark.png │ ├── view-BoxView-16~dark@2x.png │ ├── view-BoxView-16~dark~sel.png │ ├── view-BoxView-16~dark~sel@2x.png │ ├── view-BoxView-16~sel.png │ ├── view-BoxView-16~sel@2x.png │ ├── view-Button-16.png │ ├── view-Button-16@2x.png │ ├── view-Button-16~dark.png │ ├── view-Button-16~dark@2x.png │ ├── view-Button-16~dark~sel.png │ ├── view-Button-16~dark~sel@2x.png │ ├── view-Button-16~sel.png │ ├── view-Button-16~sel@2x.png │ ├── view-DatePicker-16.png │ ├── view-DatePicker-16@2x.png │ ├── view-DatePicker-16~dark.png │ ├── view-DatePicker-16~dark@2x.png │ ├── view-DatePicker-16~dark~sel.png │ ├── view-DatePicker-16~dark~sel@2x.png │ ├── view-DatePicker-16~sel.png │ ├── view-DatePicker-16~sel@2x.png │ ├── view-Editor-16.png │ ├── view-Editor-16@2x.png │ ├── view-Editor-16~dark.png │ ├── view-Editor-16~dark@2x.png │ ├── view-Editor-16~dark~sel.png │ ├── view-Editor-16~dark~sel@2x.png │ ├── view-Editor-16~sel.png │ ├── view-Editor-16~sel@2x.png │ ├── view-Entry-16.png │ ├── view-Entry-16@2x.png │ ├── view-Entry-16~dark.png │ ├── view-Entry-16~dark@2x.png │ ├── view-Entry-16~dark~sel.png │ ├── view-Entry-16~dark~sel@2x.png │ ├── view-Entry-16~sel.png │ ├── view-Entry-16~sel@2x.png │ ├── view-Image-16.png │ ├── view-Image-16@2x.png │ ├── view-Image-16~dark.png │ ├── view-Image-16~dark@2x.png │ ├── view-Image-16~dark~sel.png │ ├── view-Image-16~dark~sel@2x.png │ ├── view-Image-16~sel.png │ ├── view-Image-16~sel@2x.png │ ├── view-Label-16.png │ ├── view-Label-16@2x.png │ ├── view-Label-16~dark.png │ ├── view-Label-16~dark@2x.png │ ├── view-Label-16~dark~sel.png │ ├── view-Label-16~dark~sel@2x.png │ ├── view-Label-16~sel.png │ ├── view-Label-16~sel@2x.png │ ├── view-ListView-16.png │ ├── view-ListView-16@2x.png │ ├── view-ListView-16~dark.png │ ├── view-ListView-16~dark@2x.png │ ├── view-ListView-16~dark~sel.png │ ├── view-ListView-16~dark~sel@2x.png │ ├── view-ListView-16~sel.png │ ├── view-ListView-16~sel@2x.png │ ├── view-Map-16.png │ ├── view-Map-16@2x.png │ ├── view-Map-16~dark.png │ ├── view-Map-16~dark@2x.png │ ├── view-Map-16~dark~sel.png │ ├── view-Map-16~dark~sel@2x.png │ ├── view-Map-16~sel.png │ ├── view-Map-16~sel@2x.png │ ├── view-Picker-16.png │ ├── view-Picker-16@2x.png │ ├── view-Picker-16~dark.png │ ├── view-Picker-16~dark@2x.png │ ├── view-Picker-16~dark~sel.png │ ├── view-Picker-16~dark~sel@2x.png │ ├── view-Picker-16~sel.png │ ├── view-Picker-16~sel@2x.png │ ├── view-ProgressBar-16.png │ ├── view-ProgressBar-16@2x.png │ ├── view-ProgressBar-16~dark.png │ ├── view-ProgressBar-16~dark@2x.png │ ├── view-ProgressBar-16~dark~sel.png │ ├── view-ProgressBar-16~dark~sel@2x.png │ ├── view-ProgressBar-16~sel.png │ ├── view-ProgressBar-16~sel@2x.png │ ├── view-SearchBar-16.png │ ├── view-SearchBar-16@2x.png │ ├── view-SearchBar-16~dark.png │ ├── view-SearchBar-16~dark@2x.png │ ├── view-SearchBar-16~dark~sel.png │ ├── view-SearchBar-16~dark~sel@2x.png │ ├── view-SearchBar-16~sel.png │ ├── view-SearchBar-16~sel@2x.png │ ├── view-Slider-16.png │ ├── view-Slider-16@2x.png │ ├── view-Slider-16~dark.png │ ├── view-Slider-16~dark@2x.png │ ├── view-Slider-16~dark~sel.png │ ├── view-Slider-16~dark~sel@2x.png │ ├── view-Slider-16~sel.png │ ├── view-Slider-16~sel@2x.png │ ├── view-Stepper-16.png │ ├── view-Stepper-16@2x.png │ ├── view-Stepper-16~dark.png │ ├── view-Stepper-16~dark@2x.png │ ├── view-Stepper-16~dark~sel.png │ ├── view-Stepper-16~dark~sel@2x.png │ ├── view-Stepper-16~sel.png │ ├── view-Stepper-16~sel@2x.png │ ├── view-Switch-16.png │ ├── view-Switch-16@2x.png │ ├── view-Switch-16~dark.png │ ├── view-Switch-16~dark@2x.png │ ├── view-Switch-16~dark~sel.png │ ├── view-Switch-16~dark~sel@2x.png │ ├── view-Switch-16~sel.png │ ├── view-Switch-16~sel@2x.png │ ├── view-TableView-16.png │ ├── view-TableView-16@2x.png │ ├── view-TableView-16~dark.png │ ├── view-TableView-16~dark@2x.png │ ├── view-TableView-16~dark~sel.png │ ├── view-TableView-16~dark~sel@2x.png │ ├── view-TableView-16~sel.png │ ├── view-TableView-16~sel@2x.png │ ├── view-TimePicker-16.png │ ├── view-TimePicker-16@2x.png │ ├── view-TimePicker-16~dark.png │ ├── view-TimePicker-16~dark@2x.png │ ├── view-TimePicker-16~dark~sel.png │ ├── view-TimePicker-16~dark~sel@2x.png │ ├── view-TimePicker-16~sel.png │ ├── view-TimePicker-16~sel@2x.png │ ├── view-WebView-16.png │ ├── view-WebView-16@2x.png │ ├── view-WebView-16~dark.png │ ├── view-WebView-16~dark@2x.png │ ├── view-WebView-16~dark~sel.png │ ├── view-WebView-16~dark~sel@2x.png │ ├── view-WebView-16~sel.png │ └── view-WebView-16~sel@2x.png │ └── win │ ├── cell-EntryCell-16.png │ ├── cell-ImageCell-16.png │ ├── cell-SwitchCell-16.png │ ├── cell-TextCell-16.png │ ├── cell-ViewCell-16.png │ ├── layout-AbsoluteLayout-16.png │ ├── layout-ContentView-16.png │ ├── layout-FlexLayout-16.png │ ├── layout-Frame-16.png │ ├── layout-Grid-16.png │ ├── layout-RelativeLayout-16.png │ ├── layout-ScrollView-16.png │ ├── layout-StackLayout-16.png │ ├── view-ActivityIndicator-16.png │ ├── view-BoxView-16.png │ ├── view-Button-16.png │ ├── view-DatePicker-16.png │ ├── view-Editor-16.png │ ├── view-Entry-16.png │ ├── view-Image-16.png │ ├── view-Label-16.png │ ├── view-ListView-16.png │ ├── view-Map-16.png │ ├── view-Picker-16.png │ ├── view-ProgressBar-16.png │ ├── view-SearchBar-16.png │ ├── view-Slider-16.png │ ├── view-Stepper-16.png │ ├── view-Switch-16.png │ ├── view-TableView-16.png │ ├── view-TimePicker-16.png │ └── view-WebView-16.png ├── Xamarin.Forms.Core.UITests.Shared ├── BaseTestFixture.cs ├── PlatformAutomatedTest.cs ├── PlatformQueries.cs ├── Queries.cs ├── Remotes │ ├── BaseViewContainerRemote.cs │ ├── EventViewContainerRemote.cs │ ├── LayeredViewContainerRemote.cs │ ├── StateViewContainerRemote.cs │ └── ViewContainerRemote.cs ├── Tests │ ├── ActionSheetUITests.cs │ ├── ActivityIndicatorUITests.cs │ ├── AppearingUITests.cs │ ├── AutomationIDUITests.cs │ ├── BoxViewUITests.cs │ ├── ButtonUITests.cs │ ├── CarouselViewUITests.cs │ ├── CheckBoxUITests.cs │ ├── CollectionViewUITests.cs │ ├── ContextActionsUITests.cs │ ├── DatePickerUITests.cs │ ├── DisplayAlertUITests.cs │ ├── EditorUITests.cs │ ├── EntryUITests.cs │ ├── FrameUITests.cs │ ├── ImageButtonUITests.cs │ ├── ImageUITests.cs │ ├── LabelUITests.cs │ ├── Legacy-CellsUITests.cs │ ├── Legacy-UnevenListTests.cs │ ├── MapUITests.cs │ ├── MaterialEntryUITests.cs │ ├── PickerUITests.cs │ ├── ProgressBarUITests.cs │ ├── RadioButtonUITests.cs │ ├── RootGalleryUITests.cs │ ├── ScrollViewUITests.cs │ ├── SearchBarUITests.cs │ ├── SliderUITests.cs │ ├── StepperUITests.cs │ ├── SwitchUITests.cs │ ├── TimePickerUITests.cs │ ├── ToolbarItemTests.cs │ ├── ViewUITests.cs │ └── WebViewUITests.cs ├── UITestCategories.cs ├── Utilities │ ├── AppExtensions.cs │ ├── Drag.cs │ ├── Gestures.cs │ ├── Logger.cs │ ├── NumericExtensions.cs │ ├── ParsingUtils.cs │ ├── UITestCustomExceptions.cs │ └── ViewInspector.cs ├── Xamarin.Forms.Core.UITests.Shared.shproj └── Xamarin.Forms.Core.UITests.projitems ├── Xamarin.Forms.Core.UITests.Wasm ├── AppInitializer.cs ├── AppWrapper.cs ├── Redirect.cs └── Xamarin.Forms.Core.UITests.Wasm.csproj ├── Xamarin.Forms.Core.UnitTests ├── AbsoluteLayoutTests.cs ├── AcceleratorTypeConverterUnitTests.cs ├── AcceleratorUnitTests.cs ├── AnimatableKeyTests.cs ├── AnimationTests.cs ├── AppLinkEntryTests.cs ├── AppThemeTests.cs ├── BaseTestFixture.cs ├── BehaviorTest.cs ├── BindableLayoutTests.cs ├── BindableObjectExtensionTests.cs ├── BindableObjectUnitTests.cs ├── BindablePropertyUnitTests.cs ├── BindingBaseUnitTests.cs ├── BindingExpressionTests.cs ├── BindingTests.cs ├── BindingTypeConverterTests.cs ├── BindingUnitTests.cs ├── BoxViewUnitTests.cs ├── BrushUnitTests.cs ├── ButtonUnitTest.cs ├── CarouselPageTests.cs ├── CarouselViewTests.cs ├── CellTests.cs ├── CheckBoxUnitTests.cs ├── ColorUnitTests.cs ├── CommandSourceTests.cs ├── CommandTests.cs ├── ContentFormUnitTests.cs ├── ContentViewUnitTest.cs ├── ContraintTypeConverterTests.cs ├── ControlTemplateTests.cs ├── DataPackageTests.cs ├── DataTemplateSelectorTests.cs ├── DataTemplateTests.cs ├── DataTriggerTests.cs ├── DatePickerUnitTest.cs ├── DependencyResolutionTests.cs ├── DependencyServiceTests.cs ├── DeviceUnitTests.cs ├── DistanceTests.cs ├── DoubleCollectionTests.cs ├── DragGestureRecognizerTests.cs ├── DropGestureRecognizerTests.cs ├── DynamicBindingContextTests.cs ├── DynamicResourceTests.cs ├── EasingTests.cs ├── EditorTests.cs ├── EffectTests.cs ├── EffectiveFlowDirectionExtensions.cs ├── ElementTests.cs ├── EntryCellTests.cs ├── EntryUnitTests.cs ├── EventTriggerTest.cs ├── FlexLayoutAlignContentTests.cs ├── FlexLayoutAlignItemsTests.cs ├── FlexLayoutAlignSelfTests.cs ├── FlexLayoutFlexDirectionTests.cs ├── FlexLayoutMarginTests.cs ├── FlexLayoutTests.cs ├── FlexOrderTests.cs ├── FlowDirectionTests.cs ├── FluentTests.cs ├── FlyoutPageUnitTests.cs ├── FontAttributeConverterUnitTests.cs ├── FontUnitTests.cs ├── FormattedStringTests.cs ├── FrameUnitTests.cs ├── GeocoderUnitTests.cs ├── GeometryTests.cs ├── GridLengthTypeConverterTests.cs ├── GridTests.cs ├── GroupViewUnitTests.cs ├── ImageButtonUnitTest.cs ├── ImageSourceTests.cs ├── ImageTests.cs ├── Images │ └── crimson.jpg ├── ItemsLayoutTypeConverterTests.cs ├── ItemsViewTests.cs ├── KeyboardTests.cs ├── LabelTests.cs ├── LayoutChildIntoBoundingRegionTests.cs ├── LayoutOptionsUnitTests.cs ├── LineTests.cs ├── LinearGradientBrushTests.cs ├── ListProxyTests.cs ├── ListViewTests.cs ├── MapSpanTests.cs ├── MapTests.cs ├── MarginTests.cs ├── MarshalingObservableCollectionTests.cs ├── MasterDetailFormUnitTests.cs ├── MenuItemTests.cs ├── MenuUnitTests.cs ├── MessagingCenterTests.cs ├── MockDispatcher.cs ├── MockDispatcherProvider.cs ├── MockPlatformServices.cs ├── MockViewModel.cs ├── MotionTests.cs ├── MultiBindingTests.cs ├── MultiPageTests.cs ├── MultiTriggerTests.cs ├── NativeBindingTests.cs ├── NavigationModelTests.cs ├── NavigationProxyTests.cs ├── NavigationUnitTest.cs ├── NotifiedPropertiesTests.cs ├── NotifyCollectionChangedEventArgsExtensionsTests.cs ├── NumericExtensionsTests.cs ├── ObservableWrapperTests.cs ├── OpenGLViewUnitTests.cs ├── PageTests.cs ├── PanGestureRecognizerUnitTests.cs ├── PathFigureCollectionTests.cs ├── PathSegmentTests.cs ├── PickerTests.cs ├── PinTests.cs ├── PinchGestureRecognizerTests.cs ├── PlatformSpecificsTests.cs ├── PointCollectionTests.cs ├── PointTests.cs ├── PolygonTests.cs ├── PolylineTests.cs ├── PositionTests.cs ├── PreviewerReflectionTests.cs ├── ProgressBarTests.cs ├── RadialGradientBrushTests.cs ├── RadioButtonTemplateTests.cs ├── RadioButtonTests.cs ├── RectUnitTests.cs ├── RectangleTests.cs ├── RectangleUnitTests.cs ├── RefreshViewTests.cs ├── RegionTests.cs ├── RegistrarUnitTests.cs ├── RelativeLayoutTests.cs ├── RelativeSourceBindingTests.cs ├── ResourceDictionaryTests.cs ├── ScrollViewUnitTests.cs ├── SearchBarUnitTests.cs ├── ShellElementCollectionTests.cs ├── ShellFlyoutItemGroupTests.cs ├── ShellFlyoutItemTemplateTests.cs ├── ShellLifeCycleTests.cs ├── ShellModalTests.cs ├── ShellNavigatingTests.cs ├── ShellNavigationStateTests.cs ├── ShellParameterPassingTests.cs ├── ShellTestBase.cs ├── ShellTests.cs ├── ShellUriHandlerTests.cs ├── SizeTests.cs ├── SliderUnitTests.cs ├── SolidColorBrushTests.cs ├── SpanTests.cs ├── StackLayoutUnitTests.cs ├── StateTriggerTests.cs ├── StepperUnitTests.cs ├── StyleSheets │ ├── BaseClassSelectorTests.cs │ ├── IStylableTest.cs │ ├── MockStylable.cs │ ├── SelectorTests.cs │ └── StyleTests.cs ├── StyleTests.cs ├── SwipeGestureRecognizerTests.cs ├── SwipeViewTests.cs ├── SwitchCellTests.cs ├── SwitchUnitTests.cs ├── TabIndexTests.cs ├── TabbedFormUnitTests.cs ├── TableModelTests.cs ├── TableRootUnitTests.cs ├── TableSectionTests.cs ├── TableViewUnitTests.cs ├── TapGestureRecognizerTests.cs ├── TemplatedItemsListTests.cs ├── TemplatedPageUnitTests.cs ├── TemplatedViewUnitTests.cs ├── TextCellTests.cs ├── TextDecorationUnitTests.cs ├── ThicknessTests.cs ├── TimePickerUnitTest.cs ├── TitleViewUnitTests.cs ├── ToStringValueConverterTests.cs ├── ToolbarItemTests.cs ├── ToolbarTrackerTests.cs ├── TriggerTests.cs ├── TypeUnitTests.cs ├── TypedBindingUnitTests.cs ├── UriImageSourceTests.cs ├── ViewCellTests.cs ├── ViewUnitTests.cs ├── VisualStateManagerTests.cs ├── VisualTests.cs ├── WeakEventManagerTests.cs ├── WebViewUnitTests.cs └── Xamarin.Forms.Core.UnitTests.csproj ├── Xamarin.Forms.Core.Windows.UITests ├── WinDriverApp.cs ├── WinQuery.cs ├── WindowsTestBase.cs ├── WindowsTestServer.cs ├── Xamarin.Forms.Core.Windows.UITests.csproj ├── app.config └── readme.md ├── Xamarin.Forms.Core.iOS.UITests ├── BaseViewContainerRemoteiOS.cs ├── Makefile └── Xamarin.Forms.Core.iOS.UITests.csproj ├── Xamarin.Forms.Core.macOS.UITests ├── BaseViewContainerRemoteMac.cs ├── MacOSApp.cs ├── Xamarin.Forms.Core.macOS.UITests.csproj └── app.config ├── Xamarin.Forms.Core ├── AbsoluteLayout.cs ├── AbsoluteLayoutFlags.cs ├── Accelerator.cs ├── AcceleratorTypeConverter.cs ├── ActionSheetArguments.cs ├── ActivityIndicator.cs ├── AdaptiveTrigger.cs ├── AlertArguments.cs ├── AnimatableKey.cs ├── Animation.cs ├── AnimationExtensions.cs ├── AppLinkEntry.cs ├── AppThemeBinding.cs ├── AppThemeChangedEventArgs.cs ├── Application.cs ├── Aspect.cs ├── AutomationProperties.cs ├── BackButtonPressedEventArgs.cs ├── BarElement.cs ├── BaseMenuItem.cs ├── BindableLayout.cs ├── BindableObject.cs ├── BindableObjectExtensions.cs ├── BindableProperty.cs ├── BindablePropertyConverter.cs ├── BindablePropertyKey.cs ├── Binding.cs ├── BindingBase.cs ├── BindingBaseExtensions.cs ├── BindingExpression.cs ├── BindingMode.cs ├── BindingTypeConverter.cs ├── BorderElement.cs ├── BoundsConstraint.cs ├── BoundsTypeConverter.cs ├── BoxView.cs ├── Brush.cs ├── BrushTypeConverter.cs ├── Button.cs ├── ButtonElement.cs ├── CarouselPage.cs ├── CastingEnumerator.cs ├── Cells │ ├── Cell.cs │ ├── EntryCell.cs │ ├── ICellController.cs │ ├── IEntryCellController.cs │ ├── INativeElementView.cs │ ├── ImageCell.cs │ ├── SwitchCell.cs │ ├── TextCell.cs │ └── ViewCell.cs ├── ChatKeyboard.cs ├── CheckBox.cs ├── CheckedChangedEventArgs.cs ├── ChildCollectionChangedEventArgs.cs ├── ChildGestureRecognizer.cs ├── ClickGestureRecognizer.cs ├── ClickedEventArgs.cs ├── CollectionSynchronizationCallback.cs ├── CollectionSynchronizationContext.cs ├── Color.cs ├── ColorElement.cs ├── ColorTypeConverter.cs ├── ColumnDefinition.cs ├── ColumnDefinitionCollection.cs ├── ColumnDefinitionCollectionTypeConverter.cs ├── Command.cs ├── CompareStateTrigger.cs ├── CompressedLayout.cs ├── Configuration.cs ├── Constraint.cs ├── ConstraintExpression.cs ├── ConstraintType.cs ├── ConstraintTypeConverter.cs ├── ContentConverter.cs ├── ContentPage.cs ├── ContentPresenter.cs ├── ContentPropertyAttribute.cs ├── ContentView.cs ├── ControlTemplate.cs ├── CornerElement.cs ├── CornerRadius.cs ├── CornerRadiusTypeConverter.cs ├── Crc64.cs ├── CustomKeyboard.cs ├── DataTemplate.cs ├── DataTemplateExtensions.cs ├── DataTemplateSelector.cs ├── DateChangedEventArgs.cs ├── DatePicker.cs ├── DecorableTextElement.cs ├── DefinitionCollection.cs ├── DelegateLogListener.cs ├── DependencyAttribute.cs ├── DependencyFetchTarget.cs ├── DependencyResolver.cs ├── DependencyService.cs ├── DesignMode.cs ├── Device.cs ├── DeviceInfo.cs ├── DeviceOrientation.cs ├── DeviceOrientationExtensions.cs ├── DeviceStateTrigger.cs ├── DispatcherExtensions.cs ├── DoubleCollection.cs ├── DoubleCollectionConverter.cs ├── DragAndDrop │ ├── DataPackage.cs │ ├── DataPackageOperation.cs │ ├── DataPackagePropertySet.cs │ ├── DataPackagePropertySetView.cs │ ├── DataPackageView.cs │ ├── DragEventArgs.cs │ ├── DragGestureRecognizer.cs │ ├── DragStartingEventArgs.cs │ ├── DropCompletedEventArgs.cs │ ├── DropEventArgs.cs │ └── DropGestureRecognizer.cs ├── DualScreen │ └── IDualScreenService.cs ├── Easing.cs ├── EasingTypeConverter.cs ├── Editor.cs ├── EditorAutoSizeOption.cs ├── Effect.cs ├── EffectiveFlowDirection.cs ├── EffectiveFlowDirectionExtensions.cs ├── EffectiveVisualExtensions.cs ├── Element.cs ├── ElementCollection.cs ├── ElementEventArgs.cs ├── ElementTemplate.cs ├── Element_StyleSheets.cs ├── EmailKeyboard.cs ├── EmbeddedFont.cs ├── Entry.cs ├── EnumerableExtensions.cs ├── EventArg.cs ├── ExperimentalFlags.cs ├── ExportEffectAttribute.cs ├── ExportFontAttribute.cs ├── ExpressionSearch.cs ├── FileImageSource.cs ├── FileImageSourceConverter.cs ├── Flex.cs ├── FlexEnums.cs ├── FlexLayout.cs ├── FlowDirection.cs ├── FlyoutBehavior.cs ├── FlyoutHeaderBehavior.cs ├── FlyoutLayoutBehavior.cs ├── FlyoutPage.cs ├── FocusEventArgs.cs ├── Font.cs ├── FontAttributes.cs ├── FontElement.cs ├── FontFile.cs ├── FontImageSource.cs ├── FontRegistrar.cs ├── FontSizeConverter.cs ├── FontTypeConverter.cs ├── FormattedString.cs ├── Frame.cs ├── GestureElement.cs ├── GestureRecognizer.cs ├── GestureState.cs ├── GestureStatus.cs ├── GradientBrush.cs ├── GradientStop.cs ├── GradientStopCollection.cs ├── Grid.cs ├── GridCalc.cs ├── GridLength.cs ├── GridLengthTypeConverter.cs ├── GridUnitType.cs ├── HandlerAttribute.cs ├── HtmlWebViewSource.cs ├── IAnimatable.cs ├── IAppIndexingProvider.cs ├── IAppLinkEntry.cs ├── IAppLinks.cs ├── IApplicationController.cs ├── IBarElement.cs ├── IBorderElement.cs ├── IButtonController.cs ├── IButtonElement.cs ├── IColorElement.cs ├── IConfigElement.cs ├── IConfigPlatform.cs ├── IControlTemplated.cs ├── IConverterOptions.cs ├── ICornerElement.cs ├── IDataTemplateController.cs ├── IDecorableTextElement.cs ├── IDefinition.cs ├── IDeserializer.cs ├── IDispatcher.cs ├── IDispatcherProvider.cs ├── IEditorController.cs ├── IEffectControlProvider.cs ├── IElement.cs ├── IElementConfiguration.cs ├── IElementController.cs ├── IEmbeddedFontLoader.cs ├── IEntryController.cs ├── IExpressionSearch.cs ├── IExtendedTypeConverter.cs ├── IFlowDirectionController.cs ├── IFlyoutPageController.cs ├── IFontElement.cs ├── IGestureController.cs ├── IGestureRecognizer.cs ├── IGestureRecognizers.cs ├── IGridController.cs ├── IImageController.cs ├── IImageElement.cs ├── IIsolatedStorageFile.cs ├── IItemViewController.cs ├── IItemsView.cs ├── ILayout.cs ├── ILayoutController.cs ├── ILineHeightElement.cs ├── IListProxy.cs ├── IListViewController.cs ├── IMarkupExtension.cs ├── IMenuItemController.cs ├── IMultiPageController.cs ├── IMultiValueConverter.cs ├── INativeBindingService.cs ├── INativeValueConverterService.cs ├── INavigation.cs ├── INavigationPageController.cs ├── IOpenGlViewController.cs ├── IPaddingElement.cs ├── IPageContainer.cs ├── IPageController.cs ├── IPanGestureController.cs ├── IPinchGestureController.cs ├── IPlaceholderElement.cs ├── IPlatformElementConfiguration.cs ├── IPlatformInvalidate.cs ├── IPlatformServices.cs ├── IPropertyPropagationController.cs ├── IProvideParentValues.cs ├── IProvideValueTarget.cs ├── IRegisterable.cs ├── IResourceDictionary.cs ├── IResourcesProvider.cs ├── IRootObjectProvider.cs ├── IScrollViewController.cs ├── ISearchBarController.cs ├── IServiceProviderExtensions.cs ├── ISliderController.cs ├── ISpatialElement.cs ├── IStreamImageSource.cs ├── IStyle.cs ├── IStyleElement.cs ├── ISwipeGestureController.cs ├── ISwipeItem.cs ├── ISwipeViewController.cs ├── ISystemResourcesProvider.cs ├── ITableModel.cs ├── ITableViewController.cs ├── ITemplatedItemsList.cs ├── ITemplatedItemsListScrollToRequestedEventArgs.cs ├── ITemplatedItemsView.cs ├── ITextAlignmentElement.cs ├── ITextElement.cs ├── IValueConverter.cs ├── IValueConverterProvider.cs ├── IValueProvider.cs ├── IViewContainer.cs ├── IViewController.cs ├── IVisualController.cs ├── IVisualElementController.cs ├── IWebViewController.cs ├── IWebViewDelegate.cs ├── IXamlTypeResolver.cs ├── IXmlLineInfoProvider.cs ├── Image.cs ├── ImageButton.cs ├── ImageElement.cs ├── ImageSource.cs ├── ImageSourceConverter.cs ├── IndicatorShape.cs ├── IndicatorStackLayout.cs ├── IndicatorView.cs ├── InputView.cs ├── Interactivity │ ├── AttachedCollection.cs │ ├── Behavior.cs │ ├── BindingCondition.cs │ ├── Condition.cs │ ├── DataTrigger.cs │ ├── EventTrigger.cs │ ├── IAttachedObject.cs │ ├── MultiCondition.cs │ ├── MultiTrigger.cs │ ├── PropertyCondition.cs │ ├── Trigger.cs │ ├── TriggerAction.cs │ └── TriggerBase.cs ├── Internals │ ├── AsyncValue.cs │ ├── CellExtensions.cs │ ├── DynamicResource.cs │ ├── EffectUtilities.cs │ ├── EvalRequested.cs │ ├── IDataTemplate.cs │ ├── IDynamicResourceHandler.cs │ ├── INameScope.cs │ ├── INamescopeProvider.cs │ ├── IPlatform.cs │ ├── ImageParser.cs │ ├── InvalidationTrigger.cs │ ├── Legacy │ │ ├── FileAccess.cs │ │ ├── FileMode.cs │ │ └── FileShare.cs │ ├── NameScope.cs │ ├── NavigationRequestType.cs │ ├── NavigationRequestedEventArgs.cs │ ├── NotifyCollectionChangedEventArgsEx.cs │ ├── NotifyCollectionChangedEventArgsExtensions.cs │ ├── PageExtensions.cs │ ├── PreserveAttribute.cs │ ├── ProfilePage.cs │ ├── PropertyPropagationExtensions.cs │ ├── ResourceLoader.cs │ ├── TextTransformUtilites.cs │ ├── Ticker.cs │ └── ToolbarTracker.cs ├── InvalidNavigationException.cs ├── InvalidationEventArgs.cs ├── ItemTappedEventArgs.cs ├── ItemVisibilityEventArgs.cs ├── Items │ ├── CarouselLayoutTypeConverter.cs │ ├── CarouselView.cs │ ├── CollectionView.cs │ ├── CurrentItemChangedEventArgs.cs │ ├── GridItemsLayout.cs │ ├── GroupableItemsView.cs │ ├── IItemsLayout.cs │ ├── ItemSizingStrategy.cs │ ├── ItemsLayout.cs │ ├── ItemsLayoutOrientation.cs │ ├── ItemsLayoutTypeConverter.cs │ ├── ItemsUpdatingScrollMode.cs │ ├── ItemsView.cs │ ├── ItemsViewScrolledEventArgs.cs │ ├── LinearItemsLayout.cs │ ├── MarshalingObservableCollection.cs │ ├── PositionChangedEventArgs.cs │ ├── ScrollToRequestEventArgs.cs │ ├── SelectableItemsView.cs │ ├── SelectionChangedEventArgs.cs │ ├── SelectionList.cs │ ├── SelectionMode.cs │ ├── SnapPointsAlignment.cs │ ├── SnapPointsType.cs │ └── StructuredItemsView.cs ├── ItemsView.cs ├── Keyboard.cs ├── KeyboardFlags.cs ├── KeyboardTypeConverter.cs ├── Label.cs ├── Layout.cs ├── LayoutAlignment.cs ├── LayoutAlignmentExtensions.cs ├── LayoutConstraint.cs ├── LayoutExpandFlag.cs ├── LayoutOptions.cs ├── LayoutOptionsConverter.cs ├── LineBreakMode.cs ├── LineHeightElement.cs ├── LinearGradientBrush.cs ├── ListProxy.cs ├── ListProxyChangedEventArgs.cs ├── ListStringTypeConverter.cs ├── ListView.cs ├── ListViewCachingStrategy.cs ├── ListViewSelectionMode.cs ├── LockableObservableListWrapper.cs ├── LockingSemaphore.cs ├── Log.cs ├── LogListener.cs ├── MeasureFlags.cs ├── Menu.cs ├── MenuItem.cs ├── MergedStyle.cs ├── MessagingCenter.cs ├── ModalEventArgs.cs ├── ModalPoppedEventArgs.cs ├── ModalPoppingEventArgs.cs ├── ModalPushedEventArgs.cs ├── ModalPushingEventArgs.cs ├── MultiBinding.cs ├── MultiPage.cs ├── NameScopeExtensions.cs ├── NamedPlatformColor.cs ├── NamedSize.cs ├── NativeBindingHelpers.cs ├── NavigationEventArgs.cs ├── NavigationModel.cs ├── NavigationPage.cs ├── NavigationProxy.cs ├── NullEffect.cs ├── NumericExtensions.cs ├── NumericKeyboard.cs ├── OSAppTheme.cs ├── ObservableList.cs ├── ObservableWrapper.cs ├── OnIdiom.cs ├── OnPlatform.cs ├── OpenGLView.cs ├── OrderedDictionary.cs ├── OrientationStateTrigger.cs ├── PaddingElement.cs ├── Page.cs ├── PanGestureRecognizer.cs ├── PanUpdatedEventArgs.cs ├── ParameterAttribute.cs ├── Performance.cs ├── Picker.cs ├── PinchGestureRecognizer.cs ├── PinchGestureUpdatedEventArgs.cs ├── PlaceholderElement.cs ├── PlatformConfiguration │ ├── AndroidSpecific │ │ ├── AppCompat │ │ │ ├── Application.cs │ │ │ └── NavigationPage.cs │ │ ├── Application.cs │ │ ├── Button.cs │ │ ├── Entry.cs │ │ ├── ImageButton.cs │ │ ├── ListView.cs │ │ ├── ShellItem.cs │ │ ├── SwipeView.cs │ │ ├── TabbedPage.cs │ │ ├── ToolbarPlacement.cs │ │ ├── ViewCell.cs │ │ ├── VisualElement.cs │ │ └── WebView.cs │ ├── ExtensionPoints.cs │ ├── GTKSpecific │ │ ├── BoxView.cs │ │ ├── NavigationPage.cs │ │ ├── TabPosition.cs │ │ └── TabbedPage.cs │ ├── TizenSpecific │ │ ├── Application.cs │ │ ├── Entry.cs │ │ ├── FocusDirection.cs │ │ ├── FontWeight.cs │ │ ├── Image.cs │ │ ├── ItemsView.cs │ │ ├── Label.cs │ │ ├── NavigationPage.cs │ │ ├── Page.cs │ │ ├── ProgressBar.cs │ │ ├── ScrollView.cs │ │ ├── StyleValues.cs │ │ ├── Switch.cs │ │ └── VisualElement.cs │ ├── WindowsSpecific │ │ ├── AccessKeyPlacement.cs │ │ ├── Application.cs │ │ ├── CollapseStyle.cs │ │ ├── FlyoutPage.cs │ │ ├── InputView.cs │ │ ├── Label.cs │ │ ├── ListView.cs │ │ ├── Page.cs │ │ ├── RefreshView.cs │ │ ├── SearchBar.cs │ │ ├── TabbedPage.cs │ │ ├── ToolbarPlacement.cs │ │ ├── VisualElement.cs │ │ ├── WebView.cs │ │ └── WebViewExecutionMode.cs │ ├── iOSSpecific │ │ ├── Application.cs │ │ ├── BlurEffectStyle.cs │ │ ├── Cell.cs │ │ ├── DatePicker.cs │ │ ├── Entry.cs │ │ ├── FlyoutPage.cs │ │ ├── GroupHeaderStyle.cs │ │ ├── LargeTitleDisplayMode.cs │ │ ├── ListView.cs │ │ ├── NavigationPage.cs │ │ ├── Page.cs │ │ ├── Picker.cs │ │ ├── ScrollView.cs │ │ ├── SearchBar.cs │ │ ├── SeparatorStyle.cs │ │ ├── Slider.cs │ │ ├── StatusBarHiddenMode.cs │ │ ├── StatusBarTextColorMode.cs │ │ ├── SwipeView.cs │ │ ├── TabbedPage.cs │ │ ├── TimePicker.cs │ │ ├── TranslucencyMode.cs │ │ ├── UIModalPresentationStyle.cs │ │ ├── UISearchBarStyle.cs │ │ ├── UIStatusBarAnimation.cs │ │ ├── UpdateMode.cs │ │ └── VisualElement.cs │ └── macOSSpecific │ │ ├── NavigationPage.cs │ │ ├── NavigationTransitionStyle.cs │ │ ├── Page.cs │ │ ├── TabbedPage.cs │ │ └── TabsStyle.cs ├── PlatformConfigurationRegistry.cs ├── PlatformEffect.cs ├── Point.cs ├── PointTypeConverter.cs ├── PoppedToRootEventArgs.cs ├── Profiler.cs ├── ProgressBar.cs ├── PromptArguments.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyChangingEventArgs.cs ├── PropertyChangingEventHandler.cs ├── ProvideCompiledAttribute.cs ├── RadialGradientBrush.cs ├── RadioButton.cs ├── RadioButtonGroup.cs ├── RadioButtonGroupController.cs ├── RadioButtonGroupSelectionChanged.cs ├── ReadOnlyCastingList.cs ├── ReadOnlyListAdapter.cs ├── Rect.cs ├── RectTypeConverter.cs ├── Rectangle.cs ├── RectangleTypeConverter.cs ├── ReferenceTypeConverter.cs ├── ReflectionExtensions.cs ├── RefreshView.cs ├── Region.cs ├── Registrar.cs ├── RelativeBindingSource.cs ├── RelativeBindingSourceMode.cs ├── RelativeLayout.cs ├── RenderWithAttribute.cs ├── ResolutionGroupNameAttribute.cs ├── ResourceDictionary.cs ├── ResourcesChangedEventArgs.cs ├── ResourcesExtensions.cs ├── ReturnType.cs ├── RouteFactory.cs ├── Routing.cs ├── RoutingEffect.cs ├── RowDefinition.cs ├── RowDefinitionCollection.cs ├── RowDefinitionCollectionTypeConverter.cs ├── RuntimeNamePropertyAttribute.cs ├── ScrollBarVisibility.cs ├── ScrollMode.cs ├── ScrollOrientation.cs ├── ScrollToMode.cs ├── ScrollToPosition.cs ├── ScrollToRequestedEventArgs.cs ├── ScrollView.cs ├── ScrolledEventArgs.cs ├── SearchBar.cs ├── SearchBoxVisibility.cs ├── SelectedItemChangedEventArgs.cs ├── SelectedPositionChangedEventArgs.cs ├── SeparatorMenuItem.cs ├── SeparatorVisibility.cs ├── Setter.cs ├── SettersExtensions.cs ├── Shapes │ ├── ArcSegment.cs │ ├── BezierSegment.cs │ ├── CompositeTransform.cs │ ├── Ellipse.cs │ ├── EllipseGeometry.cs │ ├── FillRule.cs │ ├── Geometry.cs │ ├── GeometryCollection.cs │ ├── GeometryGroup.cs │ ├── GeometryHelper.cs │ ├── Line.cs │ ├── LineGeometry.cs │ ├── LineSegment.cs │ ├── Matrix.cs │ ├── MatrixTransform.cs │ ├── MatrixTypeConverter.cs │ ├── Path.cs │ ├── PathFigure.cs │ ├── PathFigureCollection.cs │ ├── PathFigureCollectionConverter.cs │ ├── PathGeometry.cs │ ├── PathGeometryConverter.cs │ ├── PathSegment.cs │ ├── PathSegmentCollection.cs │ ├── PenLineCap.cs │ ├── PenLineJoin.cs │ ├── PointCollection.cs │ ├── PointCollectionConverter.cs │ ├── PolyBezierSegment.cs │ ├── PolyLineSegment.cs │ ├── PolyQuadraticBezierSegment.cs │ ├── Polygon.cs │ ├── Polyline.cs │ ├── QuadraticBezierSegment.cs │ ├── Rectangle.cs │ ├── RectangleGeometry.cs │ ├── RotateTransform.cs │ ├── RoundRectangleGeometry.cs │ ├── ScaleTransform.cs │ ├── Shape.cs │ ├── SkewTransform.cs │ ├── Transform.cs │ ├── TransformCollection.cs │ ├── TransformGroup.cs │ ├── TransformTypeConverter.cs │ ├── TranslateTransform.cs │ └── Vector2.cs ├── Shell │ ├── BackButtonBehavior.cs │ ├── BaseShellItem.cs │ ├── FlyoutDisplayOptions.cs │ ├── ISearchHandlerController.cs │ ├── IShellAppearanceElement.cs │ ├── IShellContentController.cs │ ├── IShellContentInsetObserver.cs │ ├── IShellController.cs │ ├── IShellItemController.cs │ ├── IShellSectionController.cs │ ├── ITabStopElement.cs │ ├── MenuItemCollection.cs │ ├── MenuShellItem.cs │ ├── NavigableElement.cs │ ├── NavigationRequest.cs │ ├── PresentationMode.cs │ ├── QueryPropertyAttribute.cs │ ├── RequestDefinition.cs │ ├── RouteRequestBuilder.cs │ ├── SearchHandler.cs │ ├── Shell.cs │ ├── ShellAppearance.cs │ ├── ShellContent.cs │ ├── ShellContentCollection.cs │ ├── ShellElementCollection.cs │ ├── ShellExtensions.cs │ ├── ShellFlyoutItemsManager.cs │ ├── ShellGroupItem.cs │ ├── ShellItem.cs │ ├── ShellItemCollection.cs │ ├── ShellNavigatedEventArgs.cs │ ├── ShellNavigatingDeferral.cs │ ├── ShellNavigatingEventArgs.cs │ ├── ShellNavigationManager.cs │ ├── ShellNavigationParameters.cs │ ├── ShellNavigationSource.cs │ ├── ShellNavigationState.cs │ ├── ShellSection.cs │ ├── ShellSectionCollection.cs │ ├── ShellTemplatedViewManager.cs │ └── ShellUriHandler.cs ├── Size.cs ├── SizeRequest.cs ├── SizeTypeConverter.cs ├── Slider.cs ├── SolidColorBrush.cs ├── Span.cs ├── StackLayout.cs ├── StackOrientation.cs ├── StateTrigger.cs ├── StateTriggerBase.cs ├── Stepper.cs ├── StreamImageSource.cs ├── StreamWrapper.cs ├── Stretch.cs ├── Style.cs ├── StyleSheets │ ├── CharExtensions.cs │ ├── CssReader.cs │ ├── IStyleSelectable.cs │ ├── Selector.cs │ ├── Style.cs │ ├── StylePropertyAttribute.cs │ ├── StyleSheet.cs │ ├── StyleSheetExtensions.cs │ ├── StyleSheetServiceProvider.cs │ └── TextReaderExtensions.cs ├── SweepDirection.cs ├── SwipeBehaviorOnInvoked.cs ├── SwipeDirection.cs ├── SwipeEventArgs.cs ├── SwipeGestureRecognizer.cs ├── SwipeItem.cs ├── SwipeItemView.cs ├── SwipeItems.cs ├── SwipeMode.cs ├── SwipeView.cs ├── SwipedEventArgs.cs ├── Switch.cs ├── SynchronizedList.cs ├── TabIndexExtensions.cs ├── TabbedPage.cs ├── TableIntent.cs ├── TableModel.cs ├── TableRoot.cs ├── TableSection.cs ├── TableSectionBase.cs ├── TableView.cs ├── TapGestureRecognizer.cs ├── TappedEventArgs.cs ├── TargetIdiom.cs ├── TargetPlatform.cs ├── TelephoneKeyboard.cs ├── TemplateBinding.cs ├── TemplateExtensions.cs ├── TemplateUtilities.cs ├── TemplatedItemsList.cs ├── TemplatedPage.cs ├── TemplatedView.cs ├── TextAlignment.cs ├── TextAlignmentElement.cs ├── TextChangedEventArgs.cs ├── TextElement.cs ├── TextKeyboard.cs ├── TextTransform.cs ├── TextType.cs ├── Thickness.cs ├── ThicknessTypeConverter.cs ├── TimePicker.cs ├── ToStringValueConverter.cs ├── ToggledEventArgs.cs ├── ToolbarItem.cs ├── ToolbarItemEventArgs.cs ├── ToolbarItemOrder.cs ├── TrackableCollection.cs ├── Tweener.cs ├── TypeConversionAttribute.cs ├── TypeConverter.cs ├── TypeConverterAttribute.cs ├── TypeTypeConverter.cs ├── TypedBinding.cs ├── UnsolvableConstraintsException.cs ├── UriImageSource.cs ├── UriTypeConverter.cs ├── UrlKeyboard.cs ├── UrlWebViewSource.cs ├── ValueChangedEventArgs.cs ├── Vec2.cs ├── View.cs ├── ViewExtensions.cs ├── ViewState.cs ├── VisualElement.cs ├── VisualElement_StyleSheet.cs ├── VisualStateManager.cs ├── Visuals │ ├── IVisual.cs │ ├── VisualAttribute.cs │ ├── VisualMarker.cs │ └── VisualTypeConverter.cs ├── WeakEventManager.cs ├── WeakReferenceExtensions.cs ├── WebNavigatedEventArgs.cs ├── WebNavigatingEventArgs.cs ├── WebNavigationEvent.cs ├── WebNavigationEventArgs.cs ├── WebNavigationResult.cs ├── WebView.cs ├── WebViewSource.cs ├── WebViewSourceTypeConverter.cs ├── Xamarin.Forms.Core.csproj ├── Xaml │ ├── Diagnostics │ │ ├── BindingDiagnostics.cs │ │ ├── BindingErrorEventArgs.cs │ │ ├── DebuggerHelper.cs │ │ ├── VisualDiagnostics.cs │ │ ├── VisualTreeChangeEventArgs.cs │ │ └── XamlSourceInfo.cs │ ├── IReferenceProvider.cs │ ├── IResourcesLoader.cs │ ├── TypeConversionExtensions.cs │ ├── ValueConverterProvider.cs │ └── XamlResourceIdAttribute.cs ├── XamlParseException.cs ├── XmlLineInfo.cs ├── XmlnsDefinitionAttribute.cs └── XmlnsPrefixAttribute.cs ├── Xamarin.Forms.CustomAttributes ├── TestAttributes.cs ├── UiTestAttribute.cs └── Xamarin.Forms.CustomAttributes.csproj ├── Xamarin.Forms.DualScreen.UnitTests ├── BaseTestFixture.cs ├── MockPlatformServices.cs ├── TestDeviceInfo.cs ├── TestDualScreenService.cs ├── TwoPaneViewNotSpannedTests.cs ├── TwoPaneViewSpannedTests.cs └── Xamarin.Forms.DualScreen.UnitTests.csproj ├── Xamarin.Forms.DualScreen.sln ├── Xamarin.Forms.DualScreen ├── Directory.Build.Props ├── Directory.Build.targets ├── DualScreenInfo.android.cs ├── DualScreenInfo.netstandard.cs ├── DualScreenInfo.shared.cs ├── DualScreenInfo.uwp.cs ├── DualScreenService.android.cs ├── DualScreenService.uwp.cs ├── NoDualScreenServiceImpl.shared.cs ├── Properties │ └── AssemblyInfo.cs ├── SpanModeStateTrigger.shared.cs ├── TwoPaneView.shared.cs ├── TwoPaneViewLayoutGuide.shared.cs ├── TwoPaneViewMode.shared.cs ├── TwoPaneViewPriority.shared.cs ├── TwoPaneViewTallModeConfiguration.shared.cs ├── TwoPaneViewWideModeConfiguration.shared.cs ├── WindowSpanModeStateTrigger.shared.cs ├── Xamarin.Forms.DualScreen.csproj └── global.json ├── Xamarin.Forms.Maps.Android ├── FormsMaps.cs ├── GeocoderBackend.cs ├── MapRenderer.cs ├── Properties │ └── AssemblyInfo.cs ├── Xamarin.Forms.Maps.Android.csproj └── global.json ├── Xamarin.Forms.Maps.GTK ├── FormsMaps.cs ├── GeocoderBackend.cs ├── Libs │ ├── GMap.NET.Core.dll │ └── GMap.NET.GtkSharp.dll ├── Location.cs ├── MapRenderer.cs ├── Properties │ └── AssemblyInfo.cs ├── Xamarin.Forms.Maps.GTK.csproj └── app.config ├── Xamarin.Forms.Maps.MacOS ├── Properties │ └── AssemblyInfo.cs └── Xamarin.Forms.Maps.macOS.csproj ├── Xamarin.Forms.Maps.Tizen ├── FormsMaps.cs ├── GeocoderBackend.cs ├── MapRenderer.cs ├── Properties │ └── AssemblyInfo.cs └── Xamarin.Forms.Maps.Tizen.csproj ├── Xamarin.Forms.Maps.UWP ├── Directory.Build.Props ├── Directory.Build.targets ├── FormsMaps.cs ├── GeocoderBackend.cs ├── MapRenderer.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Xamarin.Forms.Maps.UWP.rd.xml ├── PushPin.cs ├── Xamarin.Forms.Maps.UWP.csproj └── global.json ├── Xamarin.Forms.Maps.WPF ├── FormsMaps.cs ├── FormsPushPin.cs ├── GeocoderBackend.cs ├── MapRenderer.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Xamarin.Forms.Maps.WPF.csproj ├── Xamarin.Forms.Maps.iOS ├── FormsMaps.cs ├── GeocoderBackend.cs ├── MapPool.cs ├── MapRenderer.cs ├── Properties │ └── AssemblyInfo.cs └── Xamarin.Forms.Maps.iOS.csproj ├── Xamarin.Forms.Maps ├── Circle.cs ├── Distance.cs ├── Geocoder.cs ├── GeographyUtils.cs ├── Map.cs ├── MapClickedEventArgs.cs ├── MapElement.cs ├── MapSpan.cs ├── MapType.cs ├── Pin.cs ├── PinClickedEventArgs.cs ├── PinType.cs ├── Polygon.cs ├── Polyline.cs ├── Position.cs ├── Properties │ └── AssemblyInfo.cs └── Xamarin.Forms.Maps.csproj ├── Xamarin.Forms.Material.Android ├── FormsMaterial.cs ├── MaterialActivityIndicatorRenderer.cs ├── MaterialButtonRenderer.cs ├── MaterialCheckBoxRenderer.cs ├── MaterialColors.cs ├── MaterialContextThemeWrapper.cs ├── MaterialDatePickerRenderer.cs ├── MaterialEditorRenderer.cs ├── MaterialEntryRenderer.cs ├── MaterialFormsEditText.cs ├── MaterialFormsEditTextBase.cs ├── MaterialFormsEditTextManager.cs ├── MaterialFormsTextInputLayout.cs ├── MaterialFormsTextInputLayoutBase.cs ├── MaterialFrameRenderer.cs ├── MaterialPickerEditText.cs ├── MaterialPickerRenderer.cs ├── MaterialPickerTextInputLayout.cs ├── MaterialProgressBarRenderer.cs ├── MaterialSliderRenderer.cs ├── MaterialStepperRenderer.cs ├── MaterialTimePickerRenderer.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Layout │ │ ├── MaterialPickerTextInput.axml │ │ └── TextInputLayoutFilledBox.axml │ ├── color-v23 │ │ └── white_disabled_material.xml │ ├── color │ │ └── white_disabled_material.xml │ ├── drawable-v24 │ │ └── MaterialActivityIndicatorBackground.xml │ ├── drawable │ │ ├── MaterialActivityIndicatorBackground.xml │ │ └── MaterialProgressBar.xml │ ├── values-v21 │ │ └── styles.xml │ └── values │ │ └── styles.xml ├── Xamarin.Forms.Material.Android.csproj └── global.json ├── Xamarin.Forms.Material.Tizen ├── FormsMaterial.cs ├── MaterialActivityIndicatorRenderer.cs ├── MaterialButtonRenderer.cs ├── MaterialCheckBoxRenderer.cs ├── MaterialDatePickerRenderer.cs ├── MaterialEditorRenderer.cs ├── MaterialEntryRenderer.cs ├── MaterialFrameRenderer.cs ├── MaterialPickerRenderer.cs ├── MaterialProgressBarRenderer.cs ├── MaterialSliderRenderer.cs ├── MaterialStepperRenderer.cs ├── MaterialTimePickerRenderer.cs ├── Native │ ├── MCanvas.cs │ ├── MEditor.cs │ └── MPicker.cs └── Xamarin.Forms.Material.Tizen.csproj ├── Xamarin.Forms.Material.iOS ├── FormsMaterial.cs ├── IMaterialEntryRenderer.cs ├── IMaterialTextField.cs ├── MaterialActivityIndicatorRenderer.cs ├── MaterialButtonRenderer.cs ├── MaterialCheckboxRenderer.cs ├── MaterialDatePickerRenderer.cs ├── MaterialEditorRenderer.cs ├── MaterialEntryRenderer.cs ├── MaterialFormsCheckBox.cs ├── MaterialFrameRenderer.cs ├── MaterialMultiLineTextField.cs ├── MaterialPickerRenderer.cs ├── MaterialProgressBarRenderer.cs ├── MaterialSliderRenderer.cs ├── MaterialStepperRenderer.cs ├── MaterialTextField.cs ├── MaterialTextManager.cs ├── MaterialTimePickerRenderer.cs ├── NoCaretMaterialTextField.cs ├── Properties │ └── AssemblyInfo.cs ├── ReadOnlyMaterialTextField.cs └── Xamarin.Forms.Material.iOS.csproj ├── Xamarin.Forms.Platform.Android.AppLinks ├── AndroidAppLinks.cs ├── ContextExtensions.cs ├── Resources │ ├── AboutResources.txt │ └── values │ │ └── Strings.xml ├── Xamarin.Forms.Platform.Android.AppLinks.csproj └── global.json ├── Xamarin.Forms.Platform.Android.FormsViewGroup ├── Jars │ └── formsviewgroup.jar ├── Properties │ └── AssemblyInfo.cs ├── Transforms │ └── Metadata.xml └── Xamarin.Forms.Platform.Android.FormsViewGroup.csproj ├── Xamarin.Forms.Platform.Android.UnitTests ├── AssertionExtensions.cs ├── BackgroundColorTests.cs ├── BackgroundTests.cs ├── ButtonTests.cs ├── CollectionViewTests.cs ├── CornerRadiusTests.cs ├── EmbeddingTests.cs ├── IsEnabledTests.cs ├── IsVisibleTests.cs ├── Issues.cs ├── ObservrableItemsSourceTests.cs ├── OpacityTests.cs ├── PlatformTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── RendererTests.cs ├── ResourceManagerTests.cs ├── Resources │ ├── drawable │ │ └── DrawableTest.png │ ├── layout │ │ └── LayoutTest.axml │ └── values │ │ └── styles.xml ├── RotationTests.cs ├── ScaleTests.cs ├── ShellTests.cs ├── TestActivity.cs ├── TestClasses │ ├── ClearTextTransform.cs │ └── _5560Model.cs ├── TextTests.cs ├── ToolbarExtensionsTests.cs ├── TransformationTests.cs ├── TranslationTests.cs └── Xamarin.Forms.Platform.Android.UnitTests.csproj ├── Xamarin.Forms.Platform.Android ├── ActivityResultCallbackRegistry.cs ├── AndroidActivity.cs ├── AndroidAppIndexProvider.cs ├── AndroidApplicationLifecycleState.cs ├── AndroidTicker.cs ├── AndroidTitleBarVisibility.cs ├── Anticipator.cs ├── AppCompat │ ├── ButtonRenderer.cs │ ├── CarouselPageRenderer.cs │ ├── CheckBoxDesignerRenderer.cs │ ├── CheckBoxRenderer.cs │ ├── CheckBoxRendererBase.cs │ ├── FlyoutPageContainer.cs │ ├── FlyoutPageRenderer.cs │ ├── FormsAppCompatActivity.cs │ ├── FormsFragmentPagerAdapter.cs │ ├── FormsViewPager.cs │ ├── FragmentContainer.cs │ ├── FrameRenderer.cs │ ├── ILifeCycleState.cs │ ├── IManageFragments.cs │ ├── ImageButtonRenderer.cs │ ├── NavigationPageRenderer.cs │ ├── PageExtensions.cs │ ├── PickerRenderer.cs │ ├── Platform.cs │ ├── RadioButtonRenderer.cs │ ├── Resource.cs │ ├── ShellFragmentContainer.cs │ ├── SwitchRenderer.cs │ ├── TabbedPageRenderer.cs │ └── ViewRenderer.cs ├── BackgroundManager.cs ├── BorderBackgroundManager.cs ├── ButtonElementManager.cs ├── ButtonLayoutManager.cs ├── CellAdapter.cs ├── Cells │ ├── BaseCellView.cs │ ├── CellFactory.cs │ ├── CellRenderer.cs │ ├── EntryCellEditText.cs │ ├── EntryCellRenderer.cs │ ├── EntryCellView.cs │ ├── ImageCellRenderer.cs │ ├── SwitchCellRenderer.cs │ ├── SwitchCellView.cs │ ├── TextCellRenderer.cs │ └── ViewCellRenderer.cs ├── CollectionView │ ├── AdapterNotifier.cs │ ├── CarouselSpacingItemDecoration.cs │ ├── CarouselViewAdapter.cs │ ├── CarouselViewRenderer.cs │ ├── CenterSnapHelper.cs │ ├── CollectionViewRenderer.cs │ ├── DataChangeObserver.cs │ ├── EdgeSnapHelper.cs │ ├── EmptySource.cs │ ├── EmptyViewAdapter.cs │ ├── EndSingleSnapHelper.cs │ ├── EndSnapHelper.cs │ ├── GridLayoutSpanSizeLookup.cs │ ├── GroupableItemsViewAdapter.cs │ ├── GroupableItemsViewRenderer.cs │ ├── ICollectionChangedNotifier.cs │ ├── IItemsViewSource.cs │ ├── IndicatorViewRenderer.cs │ ├── ItemContentView.cs │ ├── ItemViewType.cs │ ├── ItemsSourceFactory.cs │ ├── ItemsViewAdapter.cs │ ├── ItemsViewRenderer.cs │ ├── ListSource.cs │ ├── NongreedySnapHelper.cs │ ├── ObservableGroupedSource.cs │ ├── ObservableItemsSource.cs │ ├── PositionalSmoothScroller.cs │ ├── PropertyChangedEventArgsExtensions.cs │ ├── RecyclerViewScrollListener.cs │ ├── ScrollHelper.cs │ ├── SelectableItemsViewAdapter.cs │ ├── SelectableItemsViewRenderer.cs │ ├── SelectableViewHolder.cs │ ├── SimpleViewHolder.cs │ ├── SingleSnapHelper.cs │ ├── SizedItemContentView.cs │ ├── SnapManager.cs │ ├── SpacingItemDecoration.cs │ ├── StartSingleSnapHelper.cs │ ├── StartSnapHelper.cs │ ├── StructuredItemsViewAdapter.cs │ ├── StructuredItemsViewRenderer.cs │ ├── TemplatedItemViewHolder.cs │ ├── TextViewHolder.cs │ └── UngroupedItemsSource.cs ├── ColorExtensions.cs ├── ContextExtensions.cs ├── Deserializer.cs ├── DragAndDropGestureHandler.cs ├── DualScreen │ └── IDualScreenService.cs ├── ElementChangedEventArgs.cs ├── Elevation.cs ├── EmbeddedFontLoader.cs ├── EntryAccessibilityDelegate.cs ├── ExportCellAttribute.cs ├── ExportImageSourceHandlerAttribute.cs ├── ExportRendererAttribute.cs ├── Extensions.cs ├── Extensions │ ├── AccessibilityExtensions.cs │ ├── BrushExtensions.cs │ ├── CanvasExtensions.cs │ ├── DoubleCollectionExtensions.cs │ ├── DrawableExtensions.cs │ ├── EntryRendererExtensions.cs │ ├── FlowDirectionExtensions.cs │ ├── FragmentManagerExtensions.cs │ ├── GeometryExtensions.cs │ ├── ImageViewExtensions.cs │ ├── JavaObjectExtensions.cs │ ├── NativeBindingExtensions.cs │ ├── RecyclerExtensions.cs │ ├── ScrollViewExtensions.cs │ ├── TextAlignmentExtensions.cs │ ├── TextViewExtensions.cs │ ├── ToolbarExtensions.cs │ └── TransformExtensions.cs ├── FastRenderers │ ├── AutomationPropertiesProvider.cs │ ├── ButtonRenderer.cs │ ├── EffectControlProvider.cs │ ├── FrameRenderer.cs │ ├── ImageElementManager.cs │ ├── ImageRenderer.cs │ ├── LabelRenderer.cs │ └── VisualElementRenderer.cs ├── Flags.cs ├── Forms.cs ├── FormsApplicationActivity.cs ├── GenericGlobalLayoutListener.cs ├── GenericMenuClickListener.cs ├── GestureManager.cs ├── GetDesiredSizeDelegate.cs ├── GradientStrokeDrawable.cs ├── IBorderVisualElementRenderer.cs ├── IButtonLayoutRenderer.cs ├── IDeviceInfoProvider.cs ├── IDisposedState.cs ├── ILayoutChanges.cs ├── IPickerRenderer.cs ├── IPlatformLayout.cs ├── IScrollView.cs ├── IStepperRenderer.cs ├── ITabStop.cs ├── IVisualElementRenderer.cs ├── ImageCache.cs ├── InnerGestureListener.cs ├── InnerScaleListener.cs ├── KeyboardManager.cs ├── LayoutExtensions.cs ├── MeasureSpecFactory.cs ├── NativeBindingservice.cs ├── NativeValueConverterService.cs ├── NativeViewWrapper.cs ├── NativeViewWrapperRenderer.cs ├── OnLayoutDelegate.cs ├── OnMeasureDelegate.cs ├── PanGestureHandler.cs ├── PickerManager.cs ├── PinchGestureHandler.cs ├── Platform.cs ├── PlatformConfigurationExtensions.cs ├── PlatformEffect.cs ├── PlatformRenderer.cs ├── PopupManager.cs ├── PowerSaveModeBroadcastReceiver.cs ├── Properties │ └── AssemblyInfo.cs ├── RendererFactory.cs ├── RendererPool.cs ├── Renderers │ ├── AHorizontalScrollView.cs │ ├── ActionSheetRenderer.cs │ ├── ActivityIndicatorRenderer.cs │ ├── AlignmentExtensions.cs │ ├── AndroidGIFImageParser.cs │ ├── BorderDrawable.cs │ ├── BottomNavigationViewTracker.cs │ ├── BottomNavigationViewUtils.cs │ ├── BoxRenderer.cs │ ├── ButtonRenderer.cs │ ├── CarouselPageAdapter.cs │ ├── CarouselPageRenderer.cs │ ├── CircularProgress.cs │ ├── ColorChangeRevealDrawable.cs │ ├── ConditionalFocusLayout.cs │ ├── ContainerView.cs │ ├── CustomFrameLayout.cs │ ├── DatePickerRenderer.cs │ ├── DescendantFocusToggler.cs │ ├── EditorRenderer.cs │ ├── ElementSelectedEventArgs.cs │ ├── EntryRenderer.cs │ ├── FileImageSourceHandler.cs │ ├── FlyoutPageRendererNonAppCompat.cs │ ├── FontExtensions.cs │ ├── FontImageSourceHandler.cs │ ├── FormattedStringExtensions.cs │ ├── FormsEditText.cs │ ├── FormsImageView.cs │ ├── FormsSeekBar.cs │ ├── FormsTextView.cs │ ├── FormsVideoView.cs │ ├── FormsWebChromeClient.cs │ ├── FormsWebViewClient.cs │ ├── FrameRenderer.cs │ ├── GenericAnimatorListener.cs │ ├── GroupedListViewAdapter.cs │ ├── IAnimationSourceHandler.cs │ ├── IDescendantFocusToggler.cs │ ├── IFormsEditText.cs │ ├── IImageSourceHandler.cs │ ├── IImageViewHandler.cs │ ├── IOrderedTraversalController.cs │ ├── IPopupTrigger.cs │ ├── IShellBottomNavigationViewAppearanceTracker.cs │ ├── IShellContext.cs │ ├── IShellFlyoutContentRenderer.cs │ ├── IShellFlyoutRenderer.cs │ ├── IShellItemRenderer.cs │ ├── IShellObservableFragment.cs │ ├── IShellSearchView.cs │ ├── IShellSectionRenderer.cs │ ├── IShellTabLayoutAppearanceTracker.cs │ ├── IShellToolbarAppearanceTracker.cs │ ├── IShellToolbarTracker.cs │ ├── ImageExtensions.cs │ ├── ImageLoaderSourceHandler.cs │ ├── ImageRenderer.cs │ ├── KeyboardExtensions.cs │ ├── LabelRenderer.cs │ ├── ListViewAdapter.cs │ ├── ListViewRenderer.cs │ ├── LocalizedDigitsKeyListener.cs │ ├── MasterDetailContainer.cs │ ├── MasterDetailRenderer.cs │ ├── MotionEventHelper.cs │ ├── NavigationRenderer.cs │ ├── ObjectJavaBox.cs │ ├── OpenGLViewRenderer.cs │ ├── PageContainer.cs │ ├── PageRenderer.cs │ ├── PickerEditText.cs │ ├── PickerRenderer.cs │ ├── ProgressBarRenderer.cs │ ├── RefreshViewRenderer.cs │ ├── ScrollViewContainer.cs │ ├── ScrollViewRenderer.cs │ ├── SearchBarRenderer.cs │ ├── SearchHandlerAppearanceTracker.cs │ ├── ShellBottomNavViewAppearanceTracker.cs │ ├── ShellContentFragment.cs │ ├── ShellFlyoutLayout.cs │ ├── ShellFlyoutRecyclerAdapter.cs │ ├── ShellFlyoutRenderer.cs │ ├── ShellFlyoutTemplatedContentRenderer.cs │ ├── ShellFragmentPagerAdapter.cs │ ├── ShellItemRenderer.cs │ ├── ShellItemRendererBase.cs │ ├── ShellPageContainer.cs │ ├── ShellRenderer.cs │ ├── ShellSearchView.cs │ ├── ShellSearchViewAdapter.cs │ ├── ShellSectionRenderer.cs │ ├── ShellTabLayoutAppearanceTracker.cs │ ├── ShellToolbarAppearanceTracker.cs │ ├── ShellToolbarTracker.cs │ ├── ShellViewRenderer.cs │ ├── SliderRenderer.cs │ ├── StepperRenderer.cs │ ├── StreamImagesourceHandler.cs │ ├── SwipeViewRenderer.cs │ ├── SwitchRenderer.cs │ ├── TabbedRenderer.cs │ ├── TableViewModelRenderer.cs │ ├── TableViewRenderer.cs │ ├── TimePickerRenderer.cs │ ├── ViewCellExtensions.cs │ ├── ViewGroupExtensions.cs │ └── WebViewRenderer.cs ├── ResourceManager.cs ├── Resources │ ├── Layout │ │ ├── BottomTabLayout.axml │ │ ├── FallbackTabbarDoNotUse.axml │ │ ├── FallbackToolbarDoNotUse.axml │ │ ├── FlyoutContent.axml │ │ ├── RootLayout.axml │ │ ├── ShellContent.axml │ │ ├── Tabbar.axml │ │ └── Toolbar.axml │ ├── anim │ │ ├── EnterFromLeft.xml │ │ ├── EnterFromRight.xml │ │ ├── ExitToLeft.xml │ │ └── ExitToRight.xml │ └── values │ │ ├── attrs.xml │ │ ├── strings.xml │ │ └── styles.xml ├── ResourcesProvider.cs ├── Shapes │ ├── EllipseRenderer.cs │ ├── LineRenderer.cs │ ├── PathRenderer.cs │ ├── PolygonRenderer.cs │ ├── PolylineRenderer.cs │ ├── RectangleRenderer.cs │ └── ShapeRenderer.cs ├── StepperRendererManager.cs ├── SwipeGestureHandler.cs ├── TapGestureHandler.cs ├── TextColorSwitcher.cs ├── ViewExtensions.cs ├── ViewInitializedEventArgs.cs ├── ViewPool.cs ├── ViewRenderer.cs ├── VisualElementChangedEventArgs.cs ├── VisualElementExtensions.cs ├── VisualElementPackager.cs ├── VisualElementRenderer.cs ├── VisualElementRendererFlags.cs ├── VisualElementTracker.cs ├── Xamarin.Forms.Platform.Android.csproj └── global.json ├── Xamarin.Forms.Platform.GTK ├── Animations │ ├── BaseAnimation.cs │ └── FloatAnimation.cs ├── Cells │ ├── CellBase.cs │ ├── CellRenderer.cs │ ├── EntryCell.cs │ ├── EntryCellRenderer.cs │ ├── ImageCell.cs │ ├── ImageCellRenderer.cs │ ├── SwitchCell.cs │ ├── SwitchCellRenderer.cs │ ├── TextCell.cs │ ├── TextCellRenderer.cs │ ├── ViewCell.cs │ └── ViewCellRenderer.cs ├── Controls │ ├── ActivityIndicator.cs │ ├── BoxView.cs │ ├── Carousel.cs │ ├── CustomComboBox.cs │ ├── CustomFrame.cs │ ├── DatePicker.cs │ ├── EntryWrapper.cs │ ├── FlyoutPage.cs │ ├── GLWidget │ │ ├── GLWidget.cs │ │ ├── OSX │ │ │ └── OSXWindowInfoInitializer.cs │ │ ├── Win │ │ │ └── WinWindowsInfoInitializer.cs │ │ └── X11 │ │ │ └── XWindowInfoInitializer.cs │ ├── ImageButton.cs │ ├── ImageControl.cs │ ├── ListView.cs │ ├── NavigationChildPage.cs │ ├── NotebookWrapper.cs │ ├── OpenGLView.cs │ ├── Page.cs │ ├── PageContainer.cs │ ├── ScrolledTextView.cs │ ├── SearchEntry.cs │ ├── TabbedPageHeader.cs │ ├── TableView.cs │ ├── TimePicker.cs │ └── WebView.cs ├── ElementChangedEventArgs.cs ├── ExportCellAttribute.cs ├── ExportImageSourceHandlerAttribute.cs ├── ExportRendererAttribute.cs ├── Extensions │ ├── AlignmentExtensions.cs │ ├── ButtonContentLayoutExtensions.cs │ ├── ColorExtensions.cs │ ├── GtkRectangleExtensions.cs │ ├── ImageExtensions.cs │ ├── LabelExtensions.cs │ ├── PageExtensions.cs │ ├── VisualElementExtensions.cs │ └── WidgetExtensions.cs ├── Forms.cs ├── FormsWindow.cs ├── GtkDeviceInfo.cs ├── GtkExpressionSearch.cs ├── GtkFormsContainer.cs ├── GtkIsolatedStorageFile.cs ├── GtkOpenGL.cs ├── GtkPlatformServices.cs ├── GtkSerializer.cs ├── GtkSynchronizationContext.cs ├── GtkThemes.cs ├── GtkTicker.cs ├── GtkToolbarConstants.cs ├── GtkToolbarTracker.cs ├── Helpers │ ├── DialogHelper.cs │ ├── FontDescriptionHelper.cs │ ├── GrabHelper.cs │ └── PlatformHelper.cs ├── IDesiredSizeProvider.cs ├── IVisualElementRenderer.cs ├── IVisualNativeElementRenderer.cs ├── Libs │ ├── GMaps │ │ ├── GMap.NET.Core.dll │ │ └── GMap.NET.GTK.dll │ ├── gtk-sharp │ │ ├── Mono.Cairo │ │ │ └── Mono.Cairo.dll │ │ ├── Mono.Posix │ │ │ └── Mono.Posix.dll │ │ ├── README.txt │ │ └── gtk-sharp-2.0 │ │ │ ├── atk-sharp.dll │ │ │ ├── atk-sharp.pdb │ │ │ ├── gdk-sharp.dll │ │ │ ├── gdk-sharp.pdb │ │ │ ├── glade-sharp.dll │ │ │ ├── glade-sharp.pdb │ │ │ ├── glib-sharp.dll │ │ │ ├── glib-sharp.pdb │ │ │ ├── gtk-dotnet.dll │ │ │ ├── gtk-dotnet.pdb │ │ │ ├── gtk-sharp.dll │ │ │ ├── pango-sharp.dll │ │ │ └── pango-sharp.pdb │ └── webkit-sharp │ │ ├── README.txt │ │ ├── webkit-sharp.dll │ │ └── webkit-sharp.dll.config ├── Packagers │ ├── LayoutElementPackager.cs │ ├── PageElementPackager.cs │ └── VisualElementPackager.cs ├── Platform.cs ├── PlatformConfigurationExtensions.cs ├── PlatformEffect.cs ├── PlatformRenderer.cs ├── Properties │ └── AssemblyInfo.cs ├── RendererFactory.cs ├── Renderers │ ├── AbstractPageRenderer.cs │ ├── ActivityIndicatorRenderer.cs │ ├── BoxViewRenderer.cs │ ├── ButtonRenderer.cs │ ├── CarouselPageRenderer.cs │ ├── DatePickerRenderer.cs │ ├── EditorRenderer.cs │ ├── EntryRenderer.cs │ ├── FlyoutPageRenderer.cs │ ├── FrameRenderer.cs │ ├── IPageControl.cs │ ├── IToolbarTracker.cs │ ├── ImageRenderer.cs │ ├── LabelRenderer.cs │ ├── LayoutRenderer.cs │ ├── ListViewRenderer.cs │ ├── NavigationPageRenderer.cs │ ├── OpenGLViewRenderer.cs │ ├── PageRenderer.cs │ ├── PickerRenderer.cs │ ├── ProgressBarRenderer.cs │ ├── ScrollViewRenderer.cs │ ├── SearchBarRenderer.cs │ ├── SliderRenderer.cs │ ├── StepperRenderer.cs │ ├── SwitchRenderer.cs │ ├── TabbedPageRenderer.cs │ ├── TableViewRenderer.cs │ ├── TimePickerRenderer.cs │ └── WebViewRenderer.cs ├── Resources │ └── hamburger.png ├── ResourcesProvider.cs ├── ViewRenderer.cs ├── VisualElementRenderer.cs ├── VisualElementTracker.cs ├── Xamarin.Forms.Platform.GTK.csproj ├── app.config └── webkit-sharp.dll.config ├── Xamarin.Forms.Platform.MacOS ├── CADisplayLinkTicker.cs ├── Cells │ ├── CellNSView.cs │ ├── CellRenderer.cs │ ├── EntryCellRenderer.cs │ ├── ImageCellRenderer.cs │ ├── NSTableViewCellStyle.cs │ ├── SwitchCellRenderer.cs │ ├── TextCellRenderer.cs │ ├── ViewCellNSView.cs │ └── ViewCellRenderer.cs ├── Controls │ ├── FormsBoxView.cs │ ├── FormsImageView.cs │ ├── FormsNSDatePicker.cs │ ├── FormsNSSlider.cs │ ├── FormsPageControllerDelegate.cs │ ├── MacOSOpenGLView.cs │ ├── NavigationChildPageWrapper.cs │ ├── ScrollViewScrollChangedEventArgs.cs │ └── VerticallyCenteredTextFieldCell.cs ├── EmbeddedFontLoader.cs ├── Extensions │ ├── AlignmentExtensions.cs │ ├── BrushExtensions.cs │ ├── ButtonExtensions.cs │ ├── FlowDirectionExtensions.cs │ ├── FontExtensions.cs │ ├── ImageExtensions.cs │ ├── NSAttributedStringExtensions.cs │ ├── NSButtonExtensions.cs │ ├── NSImageExtensions.cs │ ├── NSMenuExtensions.cs │ ├── NSScrollViewExtensions.cs │ ├── NSTableViewExtensions.cs │ ├── NSTextFieldExtensions.cs │ ├── NSViewControllerExtensions.cs │ └── PageExtensions.cs ├── FormsApplicationDelegate.cs ├── ImageSourceHandlers.cs ├── MacDeviceInfo.cs ├── ModalPageTracker.cs ├── NativeToolbarTracker.cs ├── Platform.cs ├── PlatformNavigation.cs ├── PlatformRenderer.cs ├── Properties │ └── AssemblyInfo.cs ├── Renderers │ ├── ActivityIndicatorRenderer.cs │ ├── BoxViewRenderer.cs │ ├── ButtonRenderer.cs │ ├── CarouselPageRenderer.cs │ ├── CheckBoxRenderer.cs │ ├── CustomNSTableHeaderView.cs │ ├── DatePickerRenderer.cs │ ├── DefaultRenderer.cs │ ├── EditorRenderer.cs │ ├── EntryRenderer.cs │ ├── FlippedClipView.cs │ ├── FlyoutPageRenderer.cs │ ├── FrameRenderer.cs │ ├── ImageRenderer.cs │ ├── LayoutRenderer.cs │ ├── ListViewDataSource.cs │ ├── ListViewRenderer.cs │ ├── NSPageContainer.cs │ ├── NavigationPageRenderer.cs │ ├── OpenGLViewRenderer.cs │ ├── PageControllerDelegate.cs │ ├── PageRenderer.cs │ ├── PickerRenderer.cs │ ├── ProgressBarRenderer.cs │ ├── RadioButtonRenderer.cs │ ├── ScrollViewRenderer.cs │ ├── SearchBarRenderer.cs │ ├── SliderRenderer.cs │ ├── StepperRenderer.cs │ ├── SwitchRenderer.cs │ ├── TabbedPageRenderer.cs │ ├── TableViewDataSource.cs │ ├── TableViewRenderer.cs │ ├── TimePickerRenderer.cs │ └── WebViewRenderer.cs └── Xamarin.Forms.Platform.macOS.csproj ├── Xamarin.Forms.Platform.Tizen ├── Cells │ ├── CellRenderer.cs │ ├── EntryCellRenderer.cs │ ├── ImageCellRenderer.cs │ ├── SwitchCellRenderer.cs │ ├── TextCellRenderer.cs │ └── ViewCellRenderer.cs ├── Deserializer.cs ├── DisplayResolutionUnit.cs ├── ElementChangedEventArgs.cs ├── EmbeddedFontLoader.cs ├── ExportCellAttribute.cs ├── ExportHandlerAttribute.cs ├── ExportImageSourceHandlerAttribute.cs ├── ExportRendererAttribute.cs ├── Extensions │ ├── AccessibilityExtensions.cs │ ├── BrushExtensions.cs │ ├── ColorExtensions.cs │ ├── DensityIndependentPixelExtensions.cs │ ├── EntryExtensions.cs │ ├── EvasMapExtensions.cs │ ├── FontExtensions.cs │ ├── GeometryExtensions.cs │ ├── ImageExtensions.cs │ ├── KeyboardExtensions.cs │ ├── LayoutExtensions.cs │ ├── NativeBindingExtensions.cs │ ├── PageExtensions.cs │ ├── PlatformConfigurationExtensions.cs │ ├── ScrollToPositionExtensions.cs │ ├── TextAlignmentExtensions.cs │ └── TransformExtensions.cs ├── Flags.cs ├── Forms.cs ├── FormsApplication.cs ├── GestureDetector.cs ├── GestureHandler.cs ├── IGestureController.cs ├── IMEApplication.cs ├── IRotaryInteraction.cs ├── LightweightPlatform.cs ├── Log │ ├── ConsoleLogger.cs │ ├── DlogLogger.cs │ ├── ILogger.cs │ ├── Log.cs │ └── XamarinLogListener.cs ├── Native │ ├── BatchableExtensions.cs │ ├── BorderRectangle.cs │ ├── Box.cs │ ├── Button.cs │ ├── Canvas.cs │ ├── CollectionView │ │ ├── CarouselView.cs │ │ ├── CollectionView.cs │ │ ├── EmptyItemAdaptor.cs │ │ ├── GridLayoutManager.cs │ │ ├── ICollectionViewLayoutManager.cs │ │ ├── IndicatorView.cs │ │ ├── ItemAdaptor.cs │ │ ├── ItemTemplateAdaptor.cs │ │ ├── LinearLayoutManager.cs │ │ ├── RecyclerPool.cs │ │ └── ViewHolder.cs │ ├── DateChangedEventArgs.cs │ ├── DateTimePicker.cs │ ├── DateTimePickerDialog.cs │ ├── Dialog.cs │ ├── EditfieldEntry.cs │ ├── Entry.cs │ ├── EvasBox.cs │ ├── EvasFormsCanvas.cs │ ├── FlyoutPage.cs │ ├── FormattedString.cs │ ├── FormsLayout.cs │ ├── IBatchable.cs │ ├── IButton.cs │ ├── IContainable.cs │ ├── IDateTimeDialog.cs │ ├── IEntry.cs │ ├── IMeasurable.cs │ ├── ITableView.cs │ ├── ITextable.cs │ ├── Image.cs │ ├── Keyboard.cs │ ├── Label.cs │ ├── LayoutEventArgs.cs │ ├── LineBreakMode.cs │ ├── ListView.cs │ ├── ObservableCollection.cs │ ├── Page.cs │ ├── RoundRectangle.cs │ ├── Scroller.cs │ ├── SearchBar.cs │ ├── Span.cs │ ├── TableView.cs │ ├── TextAlignment.cs │ ├── TextHelper.cs │ ├── TitleViewPage.cs │ ├── ToolbarItemButton.cs │ ├── Watch │ │ ├── FormsMoreOptionItem.cs │ │ ├── FormsWatchLayout.cs │ │ ├── WatchButton.cs │ │ ├── WatchDateTimePicker.cs │ │ ├── WatchDateTimePickerDialog.cs │ │ ├── WatchDialog.cs │ │ ├── WatchListView.cs │ │ ├── WatchScroller.cs │ │ ├── WatchSpinner.cs │ │ └── WatchTableView.cs │ └── WebViewContainer.cs ├── NativeBindingService.cs ├── NativeValueConverterService.cs ├── NativeViewWrapper.cs ├── PanGestureHandler.cs ├── PinchGestureHandler.cs ├── Platform.cs ├── PlatformEffect.cs ├── PopupManager.cs ├── PreloadedWindow.cs ├── Properties │ └── AssemblyInfo.cs ├── Renderers │ ├── ActivityIndicatorRenderer.cs │ ├── BoxViewRenderer.cs │ ├── ButtonRenderer.cs │ ├── CarouselPageRenderer.cs │ ├── CarouselViewRenderer.cs │ ├── CheckBoxRenderer.cs │ ├── CustomFocusManager.cs │ ├── DatePickerRenderer.cs │ ├── DefaultRenderer.cs │ ├── EditorRenderer.cs │ ├── EntryRenderer.cs │ ├── FastLayoutRenderer.cs │ ├── FlyoutContainer.cs │ ├── FlyoutPageRenderer.cs │ ├── FrameRenderer.cs │ ├── ILayoutRenderer.cs │ ├── IVisualElementRenderer.cs │ ├── ImageButtonRenderer.cs │ ├── ImageRenderer.cs │ ├── IndicatorViewRenderer.cs │ ├── ItemsViewRenderer.cs │ ├── LabelRenderer.cs │ ├── LayoutRenderer.cs │ ├── ListViewRenderer.cs │ ├── MasterDetailContainer.cs │ ├── MasterDetailPageRenderer.cs │ ├── NativeViewWrapperRenderer.cs │ ├── NavigationPageRenderer.cs │ ├── PageRenderer.cs │ ├── PickerRenderer.cs │ ├── ProgressBarRenderer.cs │ ├── RadioButtonRenderer.cs │ ├── RefreshViewRenderer.cs │ ├── ScrollViewRenderer.cs │ ├── SearchBarRenderer.cs │ ├── SliderRenderer.cs │ ├── StepperRenderer.cs │ ├── StructuredItemsViewRenderer.cs │ ├── SwipeViewRenderer.cs │ ├── SwitchRenderer.cs │ ├── TabbedPageRenderer.cs │ ├── TableViewRenderer.cs │ ├── TimePickerRenderer.cs │ ├── ViewRenderer.cs │ ├── VisualElementRenderer.cs │ └── WebViewRenderer.cs ├── Resource │ ├── arrow_left.png │ ├── dots_horizontal.png │ ├── menu.png │ ├── refresh_48dp.png │ └── wc_visual_cue.png ├── ResourcePath.cs ├── ResourcesProvider.cs ├── Shapes │ ├── EllipseRenderer.cs │ ├── LineRenderer.cs │ ├── PathRenderer.cs │ ├── PolygonRenderer.cs │ ├── PolylineRenderer.cs │ ├── RectangleRenderer.cs │ ├── ShapeRenderer.cs │ └── ShapeView.cs ├── Shell │ ├── IFlyoutController.cs │ ├── INavigationDrawer.cs │ ├── INavigationView.cs │ ├── IShellTabs.cs │ ├── NavigationDrawer.cs │ ├── NavigationView.cs │ ├── SearchHandlerRenderer.cs │ ├── SearchResultList.cs │ ├── ShellItemRenderer.cs │ ├── ShellMoreToolbar.cs │ ├── ShellNavBar.cs │ ├── ShellRenderer.cs │ ├── ShellSectionRenderer.cs │ ├── ShellSectionStack.cs │ ├── ShellTabs.cs │ ├── SimpleViewStack.cs │ └── Watch │ │ ├── IShellItemRenderer.cs │ │ ├── NavigationDrawer.cs │ │ ├── NavigationView.cs │ │ ├── ShellContentRenderer.cs │ │ ├── ShellItemRenderer.cs │ │ ├── ShellRenderer.cs │ │ ├── ShellRendererFactory.cs │ │ ├── ShellSectionItemsRenderer.cs │ │ └── ShellSectionNavigationRenderer.cs ├── SkiaSharp │ ├── BoxViewRenderer.cs │ ├── CanvasViewRenderer.cs │ ├── FrameRenderer.cs │ ├── IBackgroundCanvas.cs │ ├── IClipperCanvas.cs │ ├── ImageRenderer.cs │ └── SKClipperView.cs ├── StaticRegistrar.cs ├── SwipeGestureHandler.cs ├── TapGestureHandler.cs ├── ThemeConstants.cs ├── ThemeManager.cs ├── TizenIsolatedStorageFile.cs ├── TizenPlatformServices.cs ├── TizenTitleBarVisibility.cs ├── ViewInitializedEventArgs.cs ├── VisualElementChangedEventArgs.cs ├── VisualElementRendererFlags.cs └── Xamarin.Forms.Platform.Tizen.csproj ├── Xamarin.Forms.Platform.UAP.UnitTests ├── BackgroundColorTests.cs ├── ColorTests.cs ├── EmbeddingTests.cs ├── FlowDirectionTests.cs ├── IsEnabledTests.cs ├── PlatformTestFixture.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Xamarin.Forms.Platform.UAP.UnitTests.rd.xml ├── RendererTests.cs ├── RotationTests.cs ├── ScaleTests.cs ├── ScrollBarVisibilityTests.cs ├── ShellTests.cs ├── TransformationTests.cs └── Xamarin.Forms.Platform.UAP.UnitTests.csproj ├── Xamarin.Forms.Platform.UAP ├── AccessKeyHelper.cs ├── AccessibilityExtensions.cs ├── ActivityIndicatorRenderer.cs ├── AlertDialog.cs ├── AlignmentExtensions.cs ├── BackgroundTracker.cs ├── BoolToVisibilityConverter.cs ├── BootstrapHelper.cs ├── BoxViewBorderRenderer.cs ├── BoxViewRenderer.cs ├── BrushConverter.cs ├── BrushExtensions.cs ├── BrushHelpers.cs ├── ButtonRenderer.cs ├── CarouselPageRenderer.cs ├── CaseConverter.cs ├── CellControl.cs ├── CheckBoxRenderer.cs ├── CollapseWhenEmptyConverter.cs ├── CollectionView │ ├── CarouselViewRenderer.cs │ ├── CollectionViewRenderer.cs │ ├── FormsGridView.cs │ ├── FormsListView.cs │ ├── GroupFooterItemTemplateContext.cs │ ├── GroupHeaderStyleSelector.cs │ ├── GroupTemplateContext.cs │ ├── GroupableItemsViewRenderer.cs │ ├── GroupedItemTemplateCollection.cs │ ├── IEmptyView.cs │ ├── ItemContentControl.cs │ ├── ItemTemplateContext.cs │ ├── ItemTemplateContextEnumerable.cs │ ├── ItemTemplateContextList.cs │ ├── ItemsViewRenderer.cs │ ├── ItemsViewStyles.xaml │ ├── LoopableCollectionView.cs │ ├── ObservableItemTemplateCollection.cs │ ├── ScrollHelpers.cs │ ├── SelectableItemsViewRenderer.cs │ ├── StructuredItemsViewRenderer.cs │ └── TemplatedItemSourceFactory.cs ├── ColorConverter.cs ├── ColorExtensions.cs ├── CompositionHelper.cs ├── DatePickerRenderer.cs ├── DefaultRenderer.cs ├── Directory.Build.Props ├── Directory.Build.targets ├── Dispatcher.cs ├── DispatcherProvider.cs ├── DualScreen │ └── IDualScreenService.cs ├── EditorRenderer.cs ├── ElementExtensions.cs ├── EmbeddedFontLoader.cs ├── EntryCellTextBox.cs ├── EntryRenderer.cs ├── ExportRendererAttribute.cs ├── Extensions.cs ├── Extensions │ ├── AspectExtensions.cs │ ├── ClipExtensions.cs │ ├── ImageExtensions.cs │ └── TransformExtensions.cs ├── FileImageSourceHandler.cs ├── Flags.cs ├── FlowDirectionExtensions.cs ├── FlyoutPageControl.cs ├── FlyoutPageControlStyle.xaml ├── FlyoutPageRenderer.cs ├── FontExtensions.cs ├── FontImageSourceHandler.cs ├── Forms.cs ├── FormsAutoSuggestBoxStyle.xaml ├── FormsButton.cs ├── FormsCancelButton.cs ├── FormsCheckBox.cs ├── FormsCheckBoxStyle.xaml ├── FormsComboBox.cs ├── FormsCommandBar.cs ├── FormsCommandBarStyle.xaml ├── FormsEmbeddedPageWrapper.xaml ├── FormsFlyout.xaml ├── FormsFlyout.xaml.cs ├── FormsPivot.cs ├── FormsPresenter.cs ├── FormsProgressBar.cs ├── FormsProgressBarStyle.xaml ├── FormsRadioButton.cs ├── FormsSlider.cs ├── FormsTextBox.cs ├── FormsTextBoxStyle.xaml ├── FormsUWP.cs ├── FrameRenderer.cs ├── FrameworkElementExtensions.cs ├── GeometryExtensions.cs ├── HeightConverter.cs ├── HorizontalTextAlignmentConverter.cs ├── ICellRenderer.cs ├── IDontGetFocus.cs ├── IIconElementHandler.cs ├── IImageSourceHandler.cs ├── IImageVisualElementRenderer.cs ├── ITabStopOnDescendants.cs ├── ITitleIconProvider.cs ├── ITitleProvider.cs ├── ITitleViewProvider.cs ├── ITitleViewRendererController.cs ├── IToolBarForegroundBinder.cs ├── IToolbarProvider.cs ├── IVisualElementRenderer.cs ├── IVisualNativeElementRenderer.cs ├── ImageButtonRenderer.cs ├── ImageConverter.cs ├── ImageElementManager.cs ├── ImageRenderer.cs ├── ImageSourceIconElementConverter.cs ├── IndicatorViewRenderer.cs ├── InterceptVisualStateManager.cs ├── KeyboardConverter.cs ├── KeyboardExtensions.cs ├── LabelHtmlHelper.cs ├── LabelRenderer.cs ├── LayoutExtensions.cs ├── LayoutRenderer.cs ├── LinkerConfig.xml ├── ListGroupHeaderPresenter.cs ├── ListViewGroupStyleSelector.cs ├── ListViewRenderer.cs ├── MasterBackgroundConverter.cs ├── MasterDetailControlStyle.xaml ├── MenuItemCommand.cs ├── NativeBindingExtensions.cs ├── NativeBindingService.cs ├── NativeEventWrapper.cs ├── NativePropertyListener.cs ├── NativeValueConverterService.cs ├── NativeViewWrapper.cs ├── NativeViewWrapperRenderer.cs ├── NavigationPageRenderer.cs ├── PageControl.cs ├── PageControlStyle.xaml ├── PageExtensions.cs ├── PageRenderer.cs ├── PageToRenderedElementConverter.cs ├── PickerRenderer.cs ├── PickerStyle.xaml ├── Platform.cs ├── PlatformConfigurationExtensions.cs ├── PlatformEffect.cs ├── PointCollectionExtensions.cs ├── PointExtensions.cs ├── ProgressBarRenderer.cs ├── PromptDialog.xaml ├── PromptDialog.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Xamarin.Forms.Platform.UAP.rd.xml ├── PropertyChangedEventArgsExtensions.cs ├── RadioButtonRenderer.cs ├── RefreshViewRenderer.cs ├── RendererFactory.cs ├── Resources.xaml ├── ScrollViewRenderer.cs ├── SearchBarRenderer.cs ├── Shapes │ ├── EllipseRenderer.cs │ ├── LineRenderer.cs │ ├── PathRenderer.cs │ ├── PolygonRenderer.cs │ ├── PolylineRenderer.cs │ ├── RectangleRenderer.cs │ └── ShapeRenderer.cs ├── Shell │ ├── ShellFlyoutItemRenderer.cs │ ├── ShellFlyoutSeparator.cs │ ├── ShellFlyoutTemplateSelector.cs │ ├── ShellFooterRenderer.cs │ ├── ShellHeaderRenderer.cs │ ├── ShellItemRenderer.cs │ ├── ShellPageWrapper.xaml │ ├── ShellPageWrapper.xaml.cs │ ├── ShellRenderer.cs │ ├── ShellSectionRenderer.cs │ ├── ShellSplitView.cs │ ├── ShellStyles.xaml │ └── ShellToolbarItemRenderer.cs ├── SliderRenderer.cs ├── SliderStyle.xaml ├── StepperControl.cs ├── StepperRenderer.cs ├── StreamImagesourceHandler.cs ├── SwipeViewRenderer.cs ├── SwitchRenderer.cs ├── TabbedPageRenderer.cs ├── TabbedPageStyle.xaml ├── TableViewRenderer.cs ├── TaskExtensions.cs ├── TextAlignmentToHorizontalAlignmentConverter.cs ├── TextBlockExtensions.cs ├── TextCellRenderer.cs ├── TimePickerRenderer.cs ├── TitleViewManager.cs ├── ToolbarPlacementHelper.cs ├── UriImageSourceHandler.cs ├── ViewExtensions.cs ├── ViewRenderer.cs ├── ViewToRendererConverter.cs ├── VisualElementChangedEventArgs.cs ├── VisualElementExtensions.cs ├── VisualElementPackager.cs ├── VisualElementRenderer.cs ├── VisualElementTracker.cs ├── WebViewRenderer.cs ├── WindowsBasePage.cs ├── WindowsBasePlatformServices.cs ├── WindowsDeviceInfo.cs ├── WindowsExpressionSearch.cs ├── WindowsIsolatedStorage.cs ├── WindowsPage.cs ├── WindowsPlatform.cs ├── WindowsPlatformServices.cs ├── WindowsResourcesProvider.cs ├── WindowsSerializer.cs ├── WindowsTicker.cs ├── Xamarin.Forms.Platform.UAP.csproj ├── Xamarin.Forms.Platform.Uno.csproj ├── build │ └── Uno.Xamarin.Forms.Platform.targets ├── global.json └── uno-logo.png ├── Xamarin.Forms.Platform.WPF ├── Animatable.cs ├── Assets │ ├── Button.xaml │ ├── CheckBox.xaml │ ├── Converters.xaml │ └── Default.xaml ├── CellControl.cs ├── Controls │ ├── FormWindow.cs │ ├── FormsAppBar.cs │ ├── FormsAppBarButton.cs │ ├── FormsBitmapIcon.cs │ ├── FormsButton.cs │ ├── FormsCarouselPage.cs │ ├── FormsContentControl.cs │ ├── FormsContentDialog.cs │ ├── FormsContentPage.cs │ ├── FormsElementIcon.cs │ ├── FormsFlyoutPage.cs │ ├── FormsFontIcon.cs │ ├── FormsMultiPage.cs │ ├── FormsNavigationPage.cs │ ├── FormsPage.cs │ ├── FormsPathIcon.cs │ ├── FormsProgressRing.xaml │ ├── FormsProgressRing.xaml.cs │ ├── FormsSymbolIcon.cs │ ├── FormsTabbedPage.cs │ ├── FormsTransitioningContentControl.cs │ ├── FormsWindowButtonCommands.cs │ └── VisualStates.cs ├── Converters │ ├── CaseConverter.cs │ ├── CollapseWhenEmptyConverter.cs │ ├── ColorConverter.cs │ ├── FontFamilyConverter.cs │ ├── FontIconColorConverter.cs │ ├── HeightConverter.cs │ ├── IconConveter.cs │ ├── ImageConverter.cs │ ├── SymbolToValueConverter.cs │ ├── ToUpperConverter.cs │ └── ViewToRendererConverter.cs ├── CustomContextMenu.cs ├── Deserializer.cs ├── ElementChangedEventArgs.cs ├── EmbeddedFontLoader.cs ├── Enums │ └── Symbol.cs ├── ExportRendererAttribute.cs ├── Extensions │ ├── AlignmentExtensions.cs │ ├── BrushExtensions.cs │ ├── ColorExtensions.cs │ ├── DeviceExtensions.cs │ ├── FontExtensions.cs │ ├── FormattedStringExtensions.cs │ ├── FrameworkElementAttached.cs │ ├── FrameworkElementExtensions.cs │ ├── GeometryExtensions.cs │ ├── ImageExtensions.cs │ ├── KeyboardExtensions.cs │ ├── ObjectExtensions.cs │ ├── PageExtensions.cs │ ├── ScrollBarVisibilityExtensions.cs │ └── VisualElementExtensions.cs ├── Forms.cs ├── FormsApplicationPage.cs ├── FormsContentLoader.cs ├── FormsPanel.cs ├── FormsRadioButton.cs ├── FormsTextBox.cs ├── FormsTimePicker.cs ├── Helpers │ ├── TreeHelper.cs │ └── UiHelper.cs ├── ICellRenderer.cs ├── IVisualElementRenderer.cs ├── Interfaces │ ├── IContentLoader.cs │ └── IFormsNavigation.cs ├── Microsoft.Windows.Shell │ ├── Standard │ │ ├── ComGuids.cs │ │ ├── Debug.cs │ │ ├── DoubleUtil.cs │ │ ├── DpiHelper.cs │ │ ├── ErrorCodes.cs │ │ ├── MessageWindow.cs │ │ ├── NativeMethods.cs │ │ ├── NtDll.cs │ │ ├── ShellProvider.cs │ │ ├── StreamHelper.cs │ │ ├── Utilities.Windows.cs │ │ ├── Utilities.Wpf.cs │ │ ├── Utilities.cs │ │ └── Verify.cs │ ├── SystemCommands.cs │ ├── SystemParameters2.cs │ ├── WindowChrome.cs │ └── WindowChromeWorker.cs ├── Platform.cs ├── PlatformEffect.cs ├── Properties │ └── AssemblyInfo.cs ├── Renderers │ ├── ActivityIndicatorRenderer.cs │ ├── BoxViewRenderer.cs │ ├── ButtonRenderer.cs │ ├── CarouselPageRenderer.cs │ ├── CellRenderer.cs │ ├── CheckBoxRenderer.cs │ ├── DatePickerRenderer.cs │ ├── EditorRenderer.cs │ ├── EntryRenderer.cs │ ├── FlyoutPageRenderer.cs │ ├── FormsCheckBox.cs │ ├── FrameRenderer.cs │ ├── ImageButtonRenderer.cs │ ├── ImageRenderer.cs │ ├── LabelRenderer.cs │ ├── LayoutRenderer.cs │ ├── ListViewRenderer.cs │ ├── NavigationPageRenderer.cs │ ├── OpenGLViewRenderer.cs │ ├── PageRenderer.cs │ ├── PickerRenderer.cs │ ├── ProgressBarRenderer.cs │ ├── RadioButtonRenderer.cs │ ├── ScrollViewRenderer.cs │ ├── SearchBarRenderer.cs │ ├── SliderRenderer.cs │ ├── StepperRenderer.cs │ ├── SwitchRenderer.cs │ ├── TabbedPageRenderer.cs │ ├── TableViewRenderer.cs │ ├── TimePickerRenderer.cs │ ├── ViewRenderer.cs │ ├── VisualMultiPageRenderer.cs │ ├── VisualPageRenderer.cs │ └── WebViewRenderer.cs ├── ResourcesProvider.cs ├── Themes │ ├── FormsAppBar.xaml │ ├── FormsAppBarButton.xaml │ ├── FormsBitmapIcon.xaml │ ├── FormsCarouselPage.xaml │ ├── FormsContentControl.xaml │ ├── FormsContentDialog.xaml │ ├── FormsContentPage.xaml │ ├── FormsFlyoutPage.xaml │ ├── FormsFontIcon.xaml │ ├── FormsNavigationPage.xaml │ ├── FormsPathIcon.xaml │ ├── FormsSymbolIcon.xaml │ ├── FormsTabbedPage.xaml │ ├── FormsTransitioningContentControl.xaml │ ├── FormsWindow.xaml │ ├── FormsWindowButtonCommands.xaml │ └── Generic.xaml ├── VisualElementTracker.cs ├── WPFDeviceInfo.cs ├── WPFExpressionSearch.cs ├── WPFIsolatedStorageFile.cs ├── WPFPlatformServices.cs ├── WPFResources.xaml ├── WPFTicker.cs ├── Xamarin.Forms.Platform.WPF.csproj └── app.config ├── Xamarin.Forms.Platform.iOS.UnitTests ├── AssertionExtensions.cs ├── BackgroundColorTests.cs ├── BackgroundTests.cs ├── ColorComparison.cs ├── CornerRadiusTests.cs ├── DatePickerTests.cs ├── EmbeddingTests.cs ├── FlowDirectionTests.cs ├── FrameTests.cs ├── HtmlLabelTests.cs ├── ImageButtonTests.cs ├── IsEnabledTests.cs ├── IsVisibleTests.cs ├── LabelTests.cs ├── NavigationTests.cs ├── ObservableItemsSourceTests.cs ├── OpacityTests.cs ├── PlatformTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── RotationTests.cs ├── ScaleTests.cs ├── ShapeTests.cs ├── TextTests.cs ├── TimePickerTests.cs ├── TransformationTests.cs └── Xamarin.Forms.Platform.iOS.UnitTests.csproj ├── Xamarin.Forms.Platform.iOS ├── CADisplayLinkTicker.cs ├── Cells │ ├── CellRenderer.cs │ ├── CellTableViewCell.cs │ ├── EntryCellRenderer.cs │ ├── ImageCellRenderer.cs │ ├── SwitchCellRenderer.cs │ ├── TextCellRenderer.cs │ └── ViewCellRenderer.cs ├── CollectionView │ ├── CarouselTemplatedCell.cs │ ├── CarouselViewController.cs │ ├── CarouselViewDelegator.cs │ ├── CarouselViewLayout.cs │ ├── CarouselViewRenderer.cs │ ├── CollectionViewRenderer.cs │ ├── DefaultCell.cs │ ├── EmptySource.cs │ ├── GridViewLayout.cs │ ├── GroupableItemsViewController.cs │ ├── GroupableItemsViewDelegator.cs │ ├── GroupableItemsViewRenderer.cs │ ├── HeightConstrainedTemplatedCell.cs │ ├── HorizontalCell.cs │ ├── HorizontalDefaultCell.cs │ ├── HorizontalDefaultSupplementalView.cs │ ├── HorizontalTemplatedHeaderView.cs │ ├── IItemsViewSource.cs │ ├── ILoopItemsViewSource.cs │ ├── IndexPathExtensions.cs │ ├── IndexPathHelpers.cs │ ├── ItemsSourceFactory.cs │ ├── ItemsViewCell.cs │ ├── ItemsViewController.cs │ ├── ItemsViewDelegator.cs │ ├── ItemsViewLayout.cs │ ├── ItemsViewRenderer.cs │ ├── LayoutAttributesChangedEventArgs.cs │ ├── ListSource.cs │ ├── ListViewLayout.cs │ ├── LoopListSource.cs │ ├── LoopObservableItemsSource.cs │ ├── ObservableGroupedSource.cs │ ├── ObservableItemsSource.cs │ ├── PropertyChangedEventArgsExtensions.cs │ ├── ScrollToPositionExtensions.cs │ ├── SelectableItemsViewController.cs │ ├── SelectableItemsViewDelegator.cs │ ├── SelectableItemsViewRenderer.cs │ ├── SnapHelpers.cs │ ├── StructuredItemsViewController.cs │ ├── StructuredItemsViewRenderer.cs │ ├── TemplateHelpers.cs │ ├── TemplatedCell.cs │ ├── VerticalCell.cs │ ├── VerticalDefaultCell.cs │ ├── VerticalDefaultSupplementalView.cs │ ├── VerticalSupplementaryView.cs │ └── WidthConstrainedTemplatedCell.cs ├── ContextActionCell.cs ├── ContextScrollViewDelegate.cs ├── Deserializer.cs ├── DisposeHelpers.cs ├── DragAndDropDelegate.cs ├── EffectUtilities.cs ├── ElementChangedEventArgs.cs ├── EmbeddedFontLoader.cs ├── EventTracker.cs ├── ExportCellAttribute.cs ├── ExportImageSourceHandlerAttribute.cs ├── ExportRendererAttribute.cs ├── Extensions │ ├── AccessibilityExtensions.cs │ ├── ArrayExtensions.cs │ ├── BrushExtensions.cs │ ├── BrushExtensions.shared.cs │ ├── CellExtensions.cs │ ├── ColorExtensions.cs │ ├── CookieExtensions.cs │ ├── DateExtensions.cs │ ├── DoubleCollectionExtensions.cs │ ├── Extensions.cs │ ├── FlowDirectionExtensions.cs │ ├── FontExtensions.Shared.cs │ ├── FontExtensions.cs │ ├── GeometryExtensions.cs │ ├── LabelExtensions.cs │ ├── LayoutExtensions.cs │ ├── NSObjectExtensions.cs │ ├── PlatformConfigurationExtensions.cs │ ├── PointCollectionExtensions.cs │ ├── ToolbarItemExtensions.cs │ ├── TransformExtensions.cs │ ├── UIApplicationExtensions.cs │ ├── UIViewExtensions.cs │ ├── ViewExtensions.cs │ └── VisualElementExtensions.cs ├── Flags.cs ├── Forms.cs ├── FormsApplicationDelegate.cs ├── GlobalCloseContextGestureRecognizer.cs ├── IOSDeviceInfo.cs ├── IVisualElementRenderer.cs ├── IVisualNativeElementRenderer.cs ├── LinkerSafeAttribute.cs ├── ModalWrapper.cs ├── NativeBindingService.cs ├── NativeValueConverterService.cs ├── NativeViewPropertyListener.cs ├── NativeViewWrapper.cs ├── NativeViewWrapperRenderer.cs ├── PageExtensions.cs ├── Platform.cs ├── PlatformEffect.cs ├── PlatformRenderer.cs ├── Properties │ └── AssemblyInfo.cs ├── RendererFactory.cs ├── RendererPool.cs ├── Renderers │ ├── ActivityIndicatorRenderer.cs │ ├── AlignmentExtensions.cs │ ├── BorderElementManager.cs │ ├── BoxRenderer.cs │ ├── ButtonElementManager.cs │ ├── ButtonLayoutManager.cs │ ├── ButtonRenderer.cs │ ├── CarouselPageRenderer.cs │ ├── CheckBoxRenderer.cs │ ├── CheckBoxRendererBase.cs │ ├── DatePickerRenderer.cs │ ├── EditorRenderer.cs │ ├── ElementSelectedEventArgs.cs │ ├── EntryRenderer.cs │ ├── ExportCellAttribute.cs │ ├── ExportImageSourceHandlerAttribute.cs │ ├── ExportRendererAttribute.cs │ ├── FormattedStringExtensions.cs │ ├── FormsCAKeyFrameAnimation.cs │ ├── FormsCheckBox.cs │ ├── FormsUIImageView.cs │ ├── FrameRenderer.cs │ ├── IAccessibilityElementsController.cs │ ├── IButtonLayoutRenderer.cs │ ├── IDisconnectable.cs │ ├── IImageVisualElementRenderer.cs │ ├── IShellContext.cs │ ├── IShellFlyoutContentRenderer.cs │ ├── IShellFlyoutRenderer.cs │ ├── IShellFlyoutTransition.cs │ ├── IShellItemController.cs │ ├── IShellItemTransition.cs │ ├── IShellNavBarAppearanceTracker.cs │ ├── IShellPageRendererTracker.cs │ ├── IShellSearchResultsRenderer.cs │ ├── IShellSectionRenderer.cs │ ├── IShellSectionRootHeader.cs │ ├── IShellSectionRootRenderer.cs │ ├── IShellTabBarAppearanceTracker.cs │ ├── ImageAnimationHelper.cs │ ├── ImageButtonRenderer.cs │ ├── ImageElementManager.cs │ ├── ImageRenderer.cs │ ├── IndicatorViewRenderer.cs │ ├── KeyboardInsetTracker.cs │ ├── KeyboardObserver.cs │ ├── LabelRenderer.cs │ ├── ListViewRenderer.cs │ ├── NavigationRenderer.cs │ ├── OpenGLViewRenderer.cs │ ├── PageContainer.cs │ ├── PageRenderer.cs │ ├── PhoneFlyoutPageRenderer.cs │ ├── PickerRenderer.cs │ ├── ProgressBarRenderer.cs │ ├── RefreshViewRenderer.cs │ ├── SafeShellNavBarAppearanceTracker.cs │ ├── SafeShellTabBarAppearanceTracker.cs │ ├── ScrollViewRenderer.cs │ ├── SearchBarRenderer.cs │ ├── SearchHandlerAppearanceTracker.cs │ ├── ShellFlyoutContentRenderer.cs │ ├── ShellFlyoutHeaderContainer.cs │ ├── ShellFlyoutLayoutManager.cs │ ├── ShellFlyoutRenderer.cs │ ├── ShellItemRenderer.cs │ ├── ShellItemTransition.cs │ ├── ShellNavBarAppearanceTracker.cs │ ├── ShellPageRendererTracker.cs │ ├── ShellRenderer.cs │ ├── ShellScrollViewTracker.cs │ ├── ShellSearchResultsRenderer.cs │ ├── ShellSectionRenderer.cs │ ├── ShellSectionRootHeader.cs │ ├── ShellSectionRootRenderer.cs │ ├── ShellTabBarAppearanceTracker.cs │ ├── ShellTableViewController.cs │ ├── ShellTableViewSource.cs │ ├── SlideFlyoutTransition.cs │ ├── SliderRenderer.cs │ ├── StepperRenderer.cs │ ├── SwipeViewRenderer.cs │ ├── SwitchRenderer.cs │ ├── TabbedRenderer.cs │ ├── TableViewModelRenderer.cs │ ├── TableViewRenderer.cs │ ├── TabletFlyoutPageRenderer.cs │ ├── TabletShellFlyoutRenderer.cs │ ├── TimePickerRenderer.cs │ ├── UIContainerCell.cs │ ├── UIContainerView.cs │ └── WkWebViewRenderer.cs ├── Resources │ ├── StringResources.Designer.cs │ ├── StringResources.ar.resx │ ├── StringResources.ca.resx │ ├── StringResources.cs.resx │ ├── StringResources.da.resx │ ├── StringResources.de.resx │ ├── StringResources.el.resx │ ├── StringResources.es.resx │ ├── StringResources.fi.resx │ ├── StringResources.fr.resx │ ├── StringResources.he.resx │ ├── StringResources.hi.resx │ ├── StringResources.hr.resx │ ├── StringResources.hu.resx │ ├── StringResources.id.resx │ ├── StringResources.it.resx │ ├── StringResources.ja.resx │ ├── StringResources.ko.resx │ ├── StringResources.ms.resx │ ├── StringResources.nb.resx │ ├── StringResources.nl.resx │ ├── StringResources.pl.resx │ ├── StringResources.pt-BR.resx │ ├── StringResources.pt.resx │ ├── StringResources.resx │ ├── StringResources.ro.resx │ ├── StringResources.ru.resx │ ├── StringResources.sk.resx │ ├── StringResources.sv.resx │ ├── StringResources.th.resx │ ├── StringResources.tr.resx │ ├── StringResources.uk.resx │ ├── StringResources.vi.resx │ ├── StringResources.zh-HK.resx │ ├── StringResources.zh-Hans.resx │ └── StringResources.zh-Hant.resx ├── ResourcesProvider.cs ├── ShadowEffect.cs ├── Shapes │ ├── EllipseRenderer.cs │ ├── LineRenderer.cs │ ├── PathRenderer.cs │ ├── PolygonRenderer.cs │ ├── PolylineRenderer.cs │ ├── RectangleRenderer.cs │ └── ShapeRenderer.cs ├── ViewInitializedEventArgs.cs ├── ViewRenderer.cs ├── VisualElementPackager.cs ├── VisualElementRenderer.cs ├── VisualElementTracker.cs ├── Xamarin.Forms.Platform.iOS.csproj ├── Xamarin.Forms.Platform.iOS.nuspec ├── _IsIncrementalBuild ├── iOSAppIndexingProvider.cs └── iOSAppLinks.cs ├── Xamarin.Forms.Platform ├── Properties │ └── AssemblyInfo.cs ├── Xamarin.Forms.Platform.cs └── Xamarin.Forms.Platform.csproj ├── Xamarin.Forms.Xaml.Design ├── AttributeTableBuilder.cs ├── Properties │ └── AssemblyInfo.cs ├── RegisterMetadata.cs └── Xamarin.Forms.Xaml.Design.csproj ├── Xamarin.Forms.Xaml.UnitTests ├── AcceptEmptyServiceProvider.xaml ├── AcceptEmptyServiceProvider.xaml.cs ├── AppResources │ ├── Colors.xaml │ ├── CompiledColors.xaml │ └── RD13209.xaml ├── ApplyPropertiesVisitorTests.cs ├── AssemblyInfoTests.cs ├── AutoMergedResourceDictionaries.xaml ├── AutoMergedResourceDictionaries.xaml.cs ├── AutomationProperties.xaml ├── AutomationProperties.xaml.cs ├── BindablePropertiesAccessModifiers.xaml ├── BindablePropertiesAccessModifiers.xaml.cs ├── BindingDiagnosticsTests.xaml ├── BindingDiagnosticsTests.xaml.cs ├── BindingsCompiler.xaml ├── BindingsCompiler.xaml.cs ├── BuildExceptionConstraint.cs ├── BuiltInConversions.xaml ├── BuiltInConversions.xaml.cs ├── ButtonCornerRadius.xaml ├── ButtonCornerRadius.xaml.cs ├── CecilExtensionsTests.cs ├── CompiledTypeConverter.xaml ├── CompiledTypeConverter.xaml.cs ├── ConstraintExpression.xaml ├── ConstraintExpression.xaml.cs ├── CustomXamlView.xaml ├── CustomXamlView.xaml.cs ├── DataTemplate.xaml ├── DataTemplate.xaml.cs ├── DataTemplateExtension.xaml ├── DataTemplateExtension.xaml.cs ├── DefaultCtorRouting.xaml ├── DefaultCtorRouting.xaml.cs ├── DefaultCtorRouting2.xaml ├── DefaultCtorRouting2.xaml.cs ├── DefinitionCollectionTests.xaml ├── DefinitionCollectionTests.xaml.cs ├── DesignPropertiesTests.cs ├── DesignTimeLoaderTests.cs ├── Directory.Build.props ├── Directory.Build.targets ├── DuplicatePropertyElements.xaml ├── DuplicatePropertyElements.xaml.cs ├── DuplicateXArgumentsElements.xaml ├── DuplicateXArgumentsElements.xaml.cs ├── DynamicResource.xaml ├── DynamicResource.xaml.cs ├── EventsConnection.xaml ├── EventsConnection.xaml.cs ├── FactoryMethodMissingCtor.xaml ├── FactoryMethodMissingCtor.xaml.cs ├── FactoryMethodMissingMethod.xaml ├── FactoryMethodMissingMethod.xaml.cs ├── FactoryMethods.xaml ├── FactoryMethods.xaml.cs ├── FieldModifier.xaml ├── FieldModifier.xaml.cs ├── FindByName.xaml ├── FindByName.xaml.cs ├── FontConverterTests.cs ├── FontImageExtension.xaml ├── FontImageExtension.xaml.cs ├── GenericCollections.xaml ├── GenericCollections.xaml.cs ├── GenericsTests.xaml ├── GenericsTests.xaml.cs ├── HRTests.cs ├── I8.xaml ├── I8.xaml.cs ├── ImplicitResourceDictionaries.xaml ├── ImplicitResourceDictionaries.xaml.cs ├── InlineCSS.xaml ├── InlineCSS.xaml.cs ├── IsCompiledDefault.xaml ├── IsCompiledDefault.xaml.cs ├── IsCompiledSkip.xaml ├── IsCompiledSkip.xaml.cs ├── Issues │ ├── AB946693.xaml │ ├── AB946693.xaml.cs │ ├── BPNotResolvedOnSubClass.xaml │ ├── BPNotResolvedOnSubClass.xaml.cs │ ├── Bz24485.xaml │ ├── Bz24485.xaml.cs │ ├── Bz24910.xaml │ ├── Bz24910.xaml.cs │ ├── Bz27299.xaml │ ├── Bz27299.xaml.cs │ ├── Bz27863.xaml │ ├── Bz27863.xaml.cs │ ├── Bz27968.xaml │ ├── Bz27968.xaml.cs │ ├── Bz28545.xaml │ ├── Bz28545.xaml.cs │ ├── Bz28556.xaml │ ├── Bz28556.xaml.cs │ ├── Bz28689.xaml │ ├── Bz28689.xaml.cs │ ├── Bz28719.xaml │ ├── Bz28719.xaml.cs │ ├── Bz29300.xaml │ ├── Bz29300.xaml.cs │ ├── Bz30074.xaml │ ├── Bz30074.xaml.cs │ ├── Bz30684.xaml │ ├── Bz30684.xaml.cs │ ├── Bz31234 │ │ ├── A │ │ │ ├── Bz31234.xaml │ │ │ └── Bz31234.xaml.cs │ │ └── B │ │ │ ├── Bz31234.xaml │ │ │ └── Bz31234.xaml.cs │ ├── Bz31529.xaml │ ├── Bz31529.xaml.cs │ ├── Bz34037.xaml │ ├── Bz34037.xaml.cs │ ├── Bz36422.xaml │ ├── Bz36422.xaml.cs │ ├── Bz37306.xaml │ ├── Bz37306.xaml.cs │ ├── Bz37524.xaml │ ├── Bz37524.xaml.cs │ ├── Bz40906.xaml │ ├── Bz40906.xaml.cs │ ├── Bz41048.xaml │ ├── Bz41048.xaml.cs │ ├── Bz41296.xaml │ ├── Bz41296.xaml.cs │ ├── Bz42531.xaml │ ├── Bz42531.xaml.cs │ ├── Bz43301.xaml │ ├── Bz43301.xaml.cs │ ├── Bz43450.xaml │ ├── Bz43450.xaml.cs │ ├── Bz43694.xaml │ ├── Bz43694.xaml.cs │ ├── Bz43733.xaml │ ├── Bz43733.xaml.cs │ ├── Bz44213.xaml │ ├── Bz44213.xaml.cs │ ├── Bz44216.xaml │ ├── Bz44216.xaml.cs │ ├── Bz45179.xaml │ ├── Bz45179.xaml.cs │ ├── Bz45299.xaml │ ├── Bz45299.xaml.cs │ ├── Bz45891.xaml │ ├── Bz45891.xaml.cs │ ├── Bz46921.xaml │ ├── Bz46921.xaml.cs │ ├── Bz47703.xaml │ ├── Bz47703.xaml.cs │ ├── Bz47950.xaml │ ├── Bz47950.xaml.cs │ ├── Bz48554.xaml │ ├── Bz48554.xaml.cs │ ├── Bz51567.xaml │ ├── Bz51567.xaml.cs │ ├── Bz53203.xaml │ ├── Bz53203.xaml.cs │ ├── Bz53275.xaml │ ├── Bz53275.xaml.cs │ ├── Bz53318.xaml │ ├── Bz53318.xaml.cs │ ├── Bz53350.xaml │ ├── Bz53350.xaml.cs │ ├── Bz53381.xaml │ ├── Bz53381.xaml.cs │ ├── Bz53381App.xaml │ ├── Bz53381App.xaml.cs │ ├── Bz54334.xaml │ ├── Bz54334.xaml.cs │ ├── Bz54717.xaml │ ├── Bz54717.xaml.cs │ ├── Bz55343.xaml │ ├── Bz55343.xaml.cs │ ├── Bz55347.xaml │ ├── Bz55347.xaml.cs │ ├── Bz55862.xaml │ ├── Bz55862.xaml.cs │ ├── Bz56852.xaml │ ├── Bz56852.xaml.cs │ ├── Bz57574.xaml │ ├── Bz57574.xaml.cs │ ├── Bz58922.xaml │ ├── Bz58922.xaml.cs │ ├── Bz59818.xaml │ ├── Bz59818.xaml.cs │ ├── Bz60203.xaml │ ├── Bz60203.xaml.cs │ ├── Bz60575.xaml │ ├── Bz60575.xaml.cs │ ├── Bz60788.xaml │ ├── Bz60788.xaml.cs │ ├── DO817710.xaml │ ├── DO817710.xaml.cs │ ├── GH2691.xaml │ ├── GH2691.xaml.cs │ ├── Gh10803.xaml │ ├── Gh10803.xaml.cs │ ├── Gh11061.xaml │ ├── Gh11061.xaml.cs │ ├── Gh11334.xaml │ ├── Gh11334.xaml.cs │ ├── Gh11335.xaml │ ├── Gh11335.xaml.cs │ ├── Gh11541.xaml │ ├── Gh11541.xaml.cs │ ├── Gh11551.xaml │ ├── Gh11551.xaml.cs │ ├── Gh11620.xaml │ ├── Gh11620.xaml.cs │ ├── Gh11711.xaml │ ├── Gh11711.xaml.cs │ ├── Gh12025.xaml │ ├── Gh12025.xaml.cs │ ├── Gh12763.xaml │ ├── Gh12763.xaml.cs │ ├── Gh12874.xaml │ ├── Gh12874.xaml.cs │ ├── Gh13209.xaml │ ├── Gh13209.xaml.cs │ ├── Gh1346.xaml │ ├── Gh1346.xaml.cs │ ├── Gh1497.xaml │ ├── Gh1497.xaml.cs │ ├── Gh1554.xaml │ ├── Gh1554.xaml.cs │ ├── Gh1566.xaml │ ├── Gh1566.xaml.cs │ ├── Gh1766.xaml │ ├── Gh1766.xaml.cs │ ├── Gh1978.xaml │ ├── Gh1978.xaml.cs │ ├── Gh2007.xaml │ ├── Gh2007.xaml.cs │ ├── Gh2034.xaml │ ├── Gh2034.xaml.cs │ ├── Gh2063.xaml │ ├── Gh2063.xaml.cs │ ├── Gh2064.xaml │ ├── Gh2064.xaml.cs │ ├── Gh2130.xaml │ ├── Gh2130.xaml.cs │ ├── Gh2171.xaml │ ├── Gh2171.xaml.cs │ ├── Gh2483.xaml │ ├── Gh2483.xaml.cs │ ├── Gh2508.xaml │ ├── Gh2508.xaml.cs │ ├── Gh2517.xaml │ ├── Gh2517.xaml.cs │ ├── Gh2549.xaml │ ├── Gh2549.xaml.cs │ ├── Gh2574.xaml │ ├── Gh2574.xaml.cs │ ├── Gh2632.xaml │ ├── Gh2632.xaml.cs │ ├── Gh2678.xaml │ ├── Gh2678.xaml.cs │ ├── Gh2752.xaml │ ├── Gh2752.xaml.cs │ ├── Gh3082.xaml │ ├── Gh3082.xaml.cs │ ├── Gh3260.xaml │ ├── Gh3260.xaml.cs │ ├── Gh3280.xaml │ ├── Gh3280.xaml.cs │ ├── Gh3512.xaml │ ├── Gh3512.xaml.cs │ ├── Gh3539.xaml │ ├── Gh3539.xaml.cs │ ├── Gh3606.xaml │ ├── Gh3606.xaml.cs │ ├── Gh3821.xaml │ ├── Gh3821.xaml.cs │ ├── Gh3821View.xaml │ ├── Gh3821View.xaml.cs │ ├── Gh3847.xaml │ ├── Gh3847.xaml.cs │ ├── Gh3862.xaml │ ├── Gh3862.xaml.cs │ ├── Gh4099.xaml │ ├── Gh4099.xaml.cs │ ├── Gh4102.xaml │ ├── Gh4102.xaml.cs │ ├── Gh4103.xaml │ ├── Gh4103.xaml.cs │ ├── Gh4130.xaml │ ├── Gh4130.xaml.cs │ ├── Gh4215.xaml │ ├── Gh4215.xaml.cs │ ├── Gh4227.xaml │ ├── Gh4227.xaml.cs │ ├── Gh4238.xaml │ ├── Gh4238.xaml.cs │ ├── Gh4319.xaml │ ├── Gh4319.xaml.cs │ ├── Gh4326.xaml │ ├── Gh4326.xaml.cs │ ├── Gh4348.xaml │ ├── Gh4348.xaml.cs │ ├── Gh4438.xaml │ ├── Gh4438.xaml.cs │ ├── Gh4446.xaml │ ├── Gh4446.xaml.cs │ ├── Gh4516.xaml │ ├── Gh4516.xaml.cs │ ├── Gh4572.xaml │ ├── Gh4572.xaml.cs │ ├── Gh4751.xaml │ ├── Gh4751.xaml.cs │ ├── Gh4760.xaml │ ├── Gh4760.xaml.cs │ ├── Gh5095.xaml │ ├── Gh5095.xaml.cs │ ├── Gh5240.xaml │ ├── Gh5240.xaml.cs │ ├── Gh5242.xaml │ ├── Gh5242.xaml.cs │ ├── Gh5254.xaml │ ├── Gh5254.xaml.cs │ ├── Gh5256.xaml │ ├── Gh5256.xaml.cs │ ├── Gh5290.xaml │ ├── Gh5290.xaml.cs │ ├── Gh5330.xaml │ ├── Gh5330.xaml.cs │ ├── Gh5378_1.xaml │ ├── Gh5378_1.xaml.cs │ ├── Gh5378_2.xaml │ ├── Gh5378_2.xaml.cs │ ├── Gh5486.xaml │ ├── Gh5486.xaml.cs │ ├── Gh5510.xaml │ ├── Gh5510.xaml.cs │ ├── Gh5651.xaml │ ├── Gh5651.xaml.cs │ ├── Gh5705.xaml │ ├── Gh5705.xaml.cs │ ├── Gh5706.xaml │ ├── Gh5706.xaml.cs │ ├── Gh6176.xaml │ ├── Gh6176.xaml.cs │ ├── Gh6192.xaml │ ├── Gh6192.xaml.cs │ ├── Gh6192Template.xaml │ ├── Gh6192Template.xaml.cs │ ├── Gh6361.xaml │ ├── Gh6361.xaml.cs │ ├── Gh6648.xaml │ ├── Gh6648.xaml.cs │ ├── Gh6996.xaml │ ├── Gh6996.xaml.cs │ ├── Gh7097.xaml │ ├── Gh7097.xaml.cs │ ├── Gh7097Base.xaml │ ├── Gh7097Base.xaml.cs │ ├── Gh7156.xaml │ ├── Gh7156.xaml.cs │ ├── Gh7187.xaml │ ├── Gh7187.xaml.cs │ ├── Gh7494.xaml │ ├── Gh7494.xaml.cs │ ├── Gh7531.xaml │ ├── Gh7531.xaml.cs │ ├── Gh7559.xaml │ ├── Gh7559.xaml.cs │ ├── Gh7830.xaml │ ├── Gh7830.xaml.cs │ ├── Gh7837.xaml │ ├── Gh7837.xaml.cs │ ├── Gh8221.xaml │ ├── Gh8221.xaml.cs │ ├── Gh8936.xaml │ ├── Gh8936.xaml.cs │ ├── Gh9212.xaml │ ├── Gh9212.xaml.cs │ ├── GrialIssue01.xaml │ ├── GrialIssue01.xaml.cs │ ├── GrialIssue02.xaml │ ├── GrialIssue02.xaml.cs │ ├── Issue1199.xaml │ ├── Issue1199.xaml.cs │ ├── Issue1213.xaml │ ├── Issue1213.xaml.cs │ ├── Issue1250.xaml │ ├── Issue1250.xaml.cs │ ├── Issue1306.xaml │ ├── Issue1306.xaml.cs │ ├── Issue1415.xaml │ ├── Issue1415.xaml.cs │ ├── Issue1438.xaml │ ├── Issue1438.xaml.cs │ ├── Issue1493.cs │ ├── Issue1497.cs │ ├── Issue1501.cs │ ├── Issue1545.cs │ ├── Issue1549.cs │ ├── Issue1554.cs │ ├── Issue1564.cs │ ├── Issue1594.cs │ ├── Issue1637.cs │ ├── Issue1641.cs │ ├── Issue1794.cs │ ├── Issue2016.xaml │ ├── Issue2016.xaml.cs │ ├── Issue2062.xaml │ ├── Issue2062.xaml.cs │ ├── Issue2114.xaml │ ├── Issue2114.xaml.cs │ ├── Issue2152.xaml │ ├── Issue2152.xaml.cs │ ├── Issue2450.xaml │ ├── Issue2450.xaml.cs │ ├── Issue2489.xaml │ ├── Issue2489.xaml.cs │ ├── Issue2578.xaml │ ├── Issue2578.xaml.cs │ ├── Issue2659.xaml │ ├── Issue2659.xaml.cs │ ├── Issue2742.xaml │ ├── Issue2742.xaml.cs │ ├── Issue3076.xaml │ ├── Issue3076.xaml.cs │ ├── Issue3090.xaml │ ├── Issue3090.xaml.cs │ ├── Issue3106.xaml │ ├── Issue3106.xaml.cs │ ├── Issue6280.xaml │ ├── Issue6280.xaml.cs │ ├── Pr3384.xaml │ ├── Pr3384.xaml.cs │ ├── TestCases.cs │ ├── Unreported001.xaml │ ├── Unreported001.xaml.cs │ ├── Unreported002.xaml │ ├── Unreported002.xaml.cs │ ├── Unreported003.xaml │ ├── Unreported003.xaml.cs │ ├── Unreported004.xaml │ ├── Unreported004.xaml.cs │ ├── Unreported005.xaml │ ├── Unreported005.xaml.cs │ ├── Unreported006.xaml │ ├── Unreported006.xaml.cs │ ├── Unreported007.xaml │ ├── Unreported007.xaml.cs │ ├── Unreported008.xaml │ ├── Unreported008.xaml.cs │ ├── Unreported009.xaml │ └── Unreported009.xaml.cs ├── LabelHtml.xaml ├── LabelHtml.xaml.cs ├── LoaderTests.cs ├── MSBuild │ ├── DummyBuildEngine.cs │ ├── MSBuildTests.cs │ ├── MSBuildXmlExtensions.cs │ ├── _Directory.Build.props │ └── _Directory.Build.targets ├── MarkupExpressionParserTests.cs ├── MarkupExtensionTests.cs ├── McIgnorable.xaml ├── McIgnorable.xaml.cs ├── MergedResourceDictionaries.xaml ├── MergedResourceDictionaries.xaml.cs ├── MockAssemblyResolver.cs ├── MockCompiler.cs ├── MultipleDataTemplateChildElements.xaml ├── MultipleDataTemplateChildElements.xaml.cs ├── NameScopeTests.cs ├── NativeViewsAndBindings.xaml ├── NativeViewsAndBindings.xaml.cs ├── NullExtensionTests.cs ├── OnAppThemeTests.cs ├── OnPlatform.xaml ├── OnPlatform.xaml.cs ├── OnPlatformTests.cs ├── PlatformSpecifics.xaml ├── PlatformSpecifics.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── ResourceDictionaryWithInvalidSource.xaml ├── ResourceDictionaryWithInvalidSource.xaml.cs ├── ResourceDictionaryWithSource.xaml ├── ResourceDictionaryWithSource.xaml.cs ├── ResourceLoader.xaml ├── ResourceLoader.xaml.cs ├── SetStyleIdFromXName.xaml ├── SetStyleIdFromXName.xaml.cs ├── SetValue.xaml ├── SetValue.xaml.cs ├── SharedResourceDictionary.xaml ├── SharedResourceDictionary.xaml.cs ├── SharedResourceDictionary2.xaml ├── SharedResourceDictionary2.xaml.cs ├── Speed │ ├── SimpleContentPage.xaml │ └── SimpleContentPage.xaml.cs ├── StringLiterals.xaml ├── StringLiterals.xaml.cs ├── StyleSheet.xaml ├── StyleSheet.xaml.cs ├── StyleTests.xaml ├── StyleTests.xaml.cs ├── TestSharedResourceDictionary.xaml ├── TestSharedResourceDictionary.xaml.cs ├── TestXmlnsUsing.xaml ├── TestXmlnsUsing.xaml.cs ├── TextTransformTests.cs ├── TriggerTests.xaml ├── TriggerTests.xaml.cs ├── TypeConverterTests.xaml ├── TypeConverterTests.xaml.cs ├── TypeConverterTestsLegacy.cs ├── TypeExtension.xaml ├── TypeExtension.xaml.cs ├── TypeExtensionTests.cs ├── TypeLoader.xaml ├── TypeLoader.xaml.cs ├── Validation │ ├── MissingXClass.xaml │ ├── NotXaml.xaml │ ├── SetterOnNonBP.xaml │ ├── SetterOnNonBP.xaml.cs │ ├── StaticExtensionException.xaml │ ├── StaticExtensionException.xaml.cs │ ├── TypeMismatch.xaml │ └── TypeMismatch.xaml.cs ├── ViewExtensionsTest.cs ├── VisualStateManagerTests.xaml ├── VisualStateManagerTests.xaml.cs ├── X2006Namespace.xaml ├── X2009Primitives.xaml ├── X2009Primitives.xaml.cs ├── XArray.xaml ├── XArray.xaml.cs ├── XNull.xaml ├── XNull.xaml.cs ├── XReference.xaml ├── XReference.xaml.cs ├── XStatic.xaml ├── XStatic.xaml.cs ├── XStaticException.xaml ├── XStaticException.xaml.cs ├── Xamarin.Forms.Xaml.UnitTests.csproj ├── XamlC │ ├── FieldReferenceExtensionsTests.cs │ ├── MethodDefinitionExtensionsTests.cs │ ├── MethodReferenceExtensionsTests.cs │ ├── ModuleDefinitionExtensionsTests.cs │ └── TypeReferenceExtensionsTests.cs ├── XamlLoaderCreateTests.cs ├── XamlLoaderGetXamlForTypeTests.xaml ├── XamlLoaderGetXamlForTypeTests.xaml.cs ├── XamlParseExceptionConstraint.cs ├── XamlgFileLockTests.cs ├── XamlgTests.cs ├── app.config ├── css │ ├── bar.css │ └── foo.css ├── xKeyLiteral.xaml └── xKeyLiteral.xaml.cs ├── Xamarin.Forms.Xaml ├── ApplyPropertiesVisitor.cs ├── CreateValuesVisitor.cs ├── Diagnostics │ ├── ResourceDictionaryDiagnostics.cs │ └── StaticResourceResolvedEventArgs.cs ├── ExpandMarkupsVisitor.cs ├── FillResourceDictionariesVisitor.cs ├── HydrationContext.cs ├── IDictionaryExtensions.cs ├── IExpressionParser.cs ├── MarkupExpressionParser.cs ├── MarkupExtensionParser.cs ├── MarkupExtensions │ ├── AppThemeBindingExtension.cs │ ├── ArrayExtension.cs │ ├── BindingExtension.cs │ ├── DataTemplateExtension.cs │ ├── DynamicResourceExtension.cs │ ├── FontImageExtension.cs │ ├── NullExtension.cs │ ├── OnIdiomExtension.cs │ ├── OnPlatformExtension.cs │ ├── ReferenceExtension.cs │ ├── RelativeSourceExtension.cs │ ├── StaticExtension.cs │ ├── StaticResourceExtension.cs │ ├── StyleSheetExtension.cs │ ├── TemplateBindingExtension.cs │ └── TypeExtension.cs ├── NamescopingVisitor.cs ├── Properties │ └── AssemblyInfo.cs ├── PruneIgnoredNodesVisitor.cs ├── RegisterXNamesVisitor.cs ├── RemoveDuplicateDesignNodes.cs ├── ResourcesLoader.cs ├── TypeArgumentsParser.cs ├── ViewExtensions.cs ├── Xamarin.Forms.Xaml.csproj ├── XamlCompilationAttribute.cs ├── XamlFilePathAttribute.cs ├── XamlLoader.cs ├── XamlNode.cs ├── XamlNodeVisitor.cs ├── XamlParser.cs ├── XamlServiceProvider.cs ├── XmlName.cs └── XmlnsHelper.cs ├── Xamarin.Forms.sln ├── Xamarin.Forms.sln.DotSettings ├── azure-pipelines.yml ├── debug.keystore ├── gitversion.yml └── xamarin.forms.snk /.Xamarin.Forms.Android.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.Xamarin.Forms.Android.slnf -------------------------------------------------------------------------------- /.Xamarin.Forms.UAP.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.Xamarin.Forms.UAP.slnf -------------------------------------------------------------------------------- /.Xamarin.Forms.iOS.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.Xamarin.Forms.iOS.slnf -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- 1 | [merge "ours"] 2 | driver = true 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.github/ISSUE_TEMPLATE/spec.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/repro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.github/repro.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.AppLinks.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.AppLinks.nuspec -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.Debug.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.Debug.targets -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.DefaultItems.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.DefaultItems.props -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.DefaultItems.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.DefaultItems.targets -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.DualScreen.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.DualScreen.nuspec -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.Maps.GTK.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.Maps.GTK.nuspec -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.Maps.WPF.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.Maps.WPF.nuspec -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.Maps.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.Maps.nuspec -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.Platform.GTK.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.Platform.GTK.nuspec -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.Platform.WPF.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.Platform.WPF.nuspec -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.Visual.Material.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.Visual.Material.nuspec -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.nuspec -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.props -------------------------------------------------------------------------------- /.nuspec/Xamarin.Forms.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/Xamarin.Forms.targets -------------------------------------------------------------------------------- /.nuspec/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nuspec/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.nuspec/proguard.cfg -------------------------------------------------------------------------------- /.vsts-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/.vsts-ci.yml -------------------------------------------------------------------------------- /AndroidNative/AndroidNative.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/AndroidNative/AndroidNative.iml -------------------------------------------------------------------------------- /AndroidNative/FormsViewGroup/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/AndroidNative/FormsViewGroup/build.gradle -------------------------------------------------------------------------------- /AndroidNative/HOWTOBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/AndroidNative/HOWTOBUILD -------------------------------------------------------------------------------- /AndroidNative/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/AndroidNative/build.gradle -------------------------------------------------------------------------------- /AndroidNative/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/AndroidNative/gradlew -------------------------------------------------------------------------------- /AndroidNative/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/AndroidNative/gradlew.bat -------------------------------------------------------------------------------- /AndroidNative/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':FormsViewGroup' -------------------------------------------------------------------------------- /Assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Assets/banner.png -------------------------------------------------------------------------------- /Assets/xamarin_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Assets/xamarin_128x128.png -------------------------------------------------------------------------------- /ControlGallery.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/ControlGallery.Build.props -------------------------------------------------------------------------------- /DevopsNuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DevopsNuget.config -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /DualScreen/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/Directory.Build.props -------------------------------------------------------------------------------- /DualScreen/DualScreen.Mac/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.Mac/AppDelegate.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen.Mac/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.Mac/Entitlements.plist -------------------------------------------------------------------------------- /DualScreen/DualScreen.Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.Mac/Info.plist -------------------------------------------------------------------------------- /DualScreen/DualScreen.Mac/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.Mac/Main.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen.Mac/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.Mac/Main.storyboard -------------------------------------------------------------------------------- /DualScreen/DualScreen.Mac/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.Mac/ViewController.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.UWP/App.xaml -------------------------------------------------------------------------------- /DualScreen/DualScreen.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.UWP/App.xaml.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.UWP/MainPage.xaml -------------------------------------------------------------------------------- /DualScreen/DualScreen.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen.WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.WPF/App.xaml -------------------------------------------------------------------------------- /DualScreen/DualScreen.WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.WPF/App.xaml.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen.WPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.WPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen.WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.WPF/MainWindow.xaml -------------------------------------------------------------------------------- /DualScreen/DualScreen.WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.iOS/Entitlements.plist -------------------------------------------------------------------------------- /DualScreen/DualScreen.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.iOS/Info.plist -------------------------------------------------------------------------------- /DualScreen/DualScreen.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen.iOS/Main.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/App.xaml -------------------------------------------------------------------------------- /DualScreen/DualScreen/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/App.xaml.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/AssemblyInfo.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/Directory.Build.props -------------------------------------------------------------------------------- /DualScreen/DualScreen/DualScreen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/DualScreen.csproj -------------------------------------------------------------------------------- /DualScreen/DualScreen/DualView/MapItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/DualView/MapItem.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen/ExtendCanvas.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/ExtendCanvas.xaml -------------------------------------------------------------------------------- /DualScreen/DualScreen/ExtendCanvas.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/ExtendCanvas.xaml.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen/TwoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/TwoPage.xaml -------------------------------------------------------------------------------- /DualScreen/DualScreen/TwoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/TwoPage.xaml.cs -------------------------------------------------------------------------------- /DualScreen/DualScreen/TwoPaneViewGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/DualScreen/DualScreen/TwoPaneViewGallery.cs -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.Droid/environment.txt: -------------------------------------------------------------------------------- 1 | MONO_LOG_LEVEL=message -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.Tizen/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.Tizen/App.cs -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.UWP/App.xaml -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.UWP/App.xaml.cs -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.UWP/Page2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.UWP/Page2.xaml -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.XF/Hello.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.XF/Hello.xaml -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.XF/Hello.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.XF/Hello.xaml.cs -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.XF/OpenUri.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.XF/OpenUri.xaml -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.XF/Page3.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.XF/Page3.xaml -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.XF/Page3.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.XF/Page3.xaml.cs -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.XF/Page4.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.XF/Page4.xaml -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.XF/Page4.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.XF/Page4.xaml.cs -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.iOS/Info.plist -------------------------------------------------------------------------------- /EmbeddingTestBeds/Embedding.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/Embedding.iOS/Main.cs -------------------------------------------------------------------------------- /EmbeddingTestBeds/EmbeddingTestBeds.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/EmbeddingTestBeds/EmbeddingTestBeds.sln -------------------------------------------------------------------------------- /Environment.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Environment.Build.props -------------------------------------------------------------------------------- /Git.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Git.Build.targets -------------------------------------------------------------------------------- /GitInfo.txt: -------------------------------------------------------------------------------- 1 | 5.0.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Makefile -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/NuGet.config -------------------------------------------------------------------------------- /Nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Nuget.targets -------------------------------------------------------------------------------- /Nuget/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Nuget/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SampleImports/Android.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/Android.Build.targets -------------------------------------------------------------------------------- /SampleImports/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/Directory.Build.props -------------------------------------------------------------------------------- /SampleImports/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/Directory.Build.targets -------------------------------------------------------------------------------- /SampleImports/Mac.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/Mac.Build.targets -------------------------------------------------------------------------------- /SampleImports/Netstandard.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/Netstandard.Build.props -------------------------------------------------------------------------------- /SampleImports/Netstandard.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/Netstandard.Build.targets -------------------------------------------------------------------------------- /SampleImports/Nuget.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/Nuget.Build.targets -------------------------------------------------------------------------------- /SampleImports/UWP.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/UWP.Build.targets -------------------------------------------------------------------------------- /SampleImports/WPF.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/WPF.Build.targets -------------------------------------------------------------------------------- /SampleImports/iOS.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SampleImports/iOS.Build.targets -------------------------------------------------------------------------------- /SourceLink.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/SourceLink.Build.props -------------------------------------------------------------------------------- /Stubs/Xamarin.Forms.Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Stubs/Xamarin.Forms.Platform.cs -------------------------------------------------------------------------------- /UWP.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/UWP.Build.props -------------------------------------------------------------------------------- /UWP.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/UWP.Build.targets -------------------------------------------------------------------------------- /Uno.Xamarin.Forms.Platform.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Uno.Xamarin.Forms.Platform.sln -------------------------------------------------------------------------------- /Version.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Version.targets -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/BuildException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/BuildException.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/CssGTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/CssGTask.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/CssGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/CssGenerator.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/DebugXamlCTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/DebugXamlCTask.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/ErrorMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/ErrorMessages.resx -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/ILContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/ILContext.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/ILRootNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/ILRootNode.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/SetFieldVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/SetFieldVisitor.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/XamlCTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/XamlCTask.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/XamlGTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/XamlGTask.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/XamlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/XamlGenerator.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Build.Tasks/XamlTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Build.Tasks/XamlTask.cs -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.Android/Environment.txt: -------------------------------------------------------------------------------- 1 | MONO_GC_PARAMS=bridge-implementation=new -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.Android/Resources/drawable/invalidimage.jpg: -------------------------------------------------------------------------------- 1 | This is certainly not a real JPEG. -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.GTK/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.GTK/App.config -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.GTK/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.GTK/Icon.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.GTK/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.GTK/Program.cs -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.GTK/ratchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.GTK/ratchet.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.GTK/tdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.GTK/tdl.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.MacOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.MacOS/Main.cs -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.Tizen/res/invalidimage.jpg: -------------------------------------------------------------------------------- 1 | This is certainly not a real JPEG. -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.WPF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.WPF/App.config -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.WPF/App.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.WPF/App.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.WPF/GifOne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.WPF/GifOne.gif -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.WPF/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.WPF/bank.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.WPF/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.WPF/coffee.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.WPF/crimson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.WPF/crimson.jpg -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.WPF/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.WPF/photo.jpg -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.WindowsUniversal.Shared/invalidimage.jpg: -------------------------------------------------------------------------------- 1 | This is certainly not a real JPEG. -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/GifOne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/GifOne.gif -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/GifTwo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/GifTwo.gif -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/Info.plist -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/Main.cs -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/Resources/invalidimage.jpg: -------------------------------------------------------------------------------- 1 | This is certainly not a real JPEG. -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/bank.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/bank@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/bank@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/caret_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/caret_r.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/coffee.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/cover1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/cover1.jpg -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/crimson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/crimson.jpg -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/default.css -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/local.html -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/oasis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/oasis.jpg -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/photo.jpg -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/seth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/seth.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/seth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/seth@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms.ControlGallery.iOS/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.ControlGallery.iOS/test.jpg -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/App.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/AppLifeCycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/AppLifeCycle.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/AppResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/AppResources.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/BuildNumber.txt: -------------------------------------------------------------------------------- 1 | master -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/CompressedLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/CompressedLayout.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/CoreGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/CoreGallery.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/Directory.Build.props -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/Fonts/PTM55FT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/Fonts/PTM55FT.ttf -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/NavReproApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/NavReproApp.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/Nuget.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/Nuget.Build.targets -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/ShellContentTest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/ShellContentTest.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/SimpleApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/SimpleApp.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/Source.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/Source.Build.targets -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/TestCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/TestCases.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/XamStore/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/XamStore/Icons.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/blank.config: -------------------------------------------------------------------------------- 1 | UWPMapsAuthKey: -------------------------------------------------------------------------------- /Xamarin.Forms.Controls/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Controls/coffee.png -------------------------------------------------------------------------------- /Xamarin.Forms.Core.Android.UITests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.Android.UITests/Makefile -------------------------------------------------------------------------------- /Xamarin.Forms.Core.Design/EnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.Design/EnumConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UITests.Shared/Queries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UITests.Shared/Queries.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UITests.Wasm/Redirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UITests.Wasm/Redirect.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/BehaviorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/BehaviorTest.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/BindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/BindingTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/CellTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/CellTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/GridTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/GridTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/ImageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/ImageTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/LabelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/LabelTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/LineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/LineTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/MapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/MapTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/PageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/PageTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/PinTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/PinTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/PointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/PointTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/ShellTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/ShellTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/SizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/SizeTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/SpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/SpanTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.UnitTests/StyleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.UnitTests/StyleTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core.iOS.UITests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core.iOS.UITests/Makefile -------------------------------------------------------------------------------- /Xamarin.Forms.Core/AbsoluteLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/AbsoluteLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/AbsoluteLayoutFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/AbsoluteLayoutFlags.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Accelerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Accelerator.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ActionSheetArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ActionSheetArguments.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ActivityIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ActivityIndicator.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/AdaptiveTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/AdaptiveTrigger.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/AlertArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/AlertArguments.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/AnimatableKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/AnimatableKey.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Animation.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/AnimationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/AnimationExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/AppLinkEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/AppLinkEntry.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/AppThemeBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/AppThemeBinding.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Application.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Aspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Aspect.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/AutomationProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/AutomationProperties.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BarElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BarElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BaseMenuItem.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms 2 | { 3 | public abstract class BaseMenuItem : Element 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BindableLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BindableLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BindableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BindableObject.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BindableProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BindableProperty.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BindablePropertyKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BindablePropertyKey.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Binding.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BindingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BindingBase.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BindingExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BindingExpression.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BindingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BindingMode.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BindingTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BindingTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BorderElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BorderElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BoundsConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BoundsConstraint.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BoundsTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BoundsTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BoxView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BoxView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Brush.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/BrushTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/BrushTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Button.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ButtonElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ButtonElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/CarouselPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/CarouselPage.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/CastingEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/CastingEnumerator.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Cells/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Cells/Cell.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Cells/EntryCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Cells/EntryCell.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Cells/ImageCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Cells/ImageCell.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Cells/SwitchCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Cells/SwitchCell.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Cells/TextCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Cells/TextCell.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Cells/ViewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Cells/ViewCell.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ChatKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ChatKeyboard.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/CheckBox.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ClickedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ClickedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Color.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ColorElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ColorElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ColorTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ColorTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ColumnDefinition.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Command.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/CompareStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/CompareStateTrigger.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/CompressedLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/CompressedLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Configuration.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Constraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Constraint.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ConstraintExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ConstraintExpression.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ConstraintType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ConstraintType.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ContentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ContentConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ContentPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ContentPage.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ContentPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ContentPresenter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ContentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ContentView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ControlTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ControlTemplate.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/CornerElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/CornerElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/CornerRadius.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/CornerRadius.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Crc64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Crc64.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/CustomKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/CustomKeyboard.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DataTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DataTemplate.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DataTemplateSelector.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DateChangedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DatePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DatePicker.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DecorableTextElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DecorableTextElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DefinitionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DefinitionCollection.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DelegateLogListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DelegateLogListener.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DependencyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DependencyAttribute.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DependencyResolver.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DependencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DependencyService.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DesignMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DesignMode.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Device.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DeviceInfo.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DeviceOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DeviceOrientation.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DeviceStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DeviceStateTrigger.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DispatcherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DispatcherExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/DoubleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/DoubleCollection.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Easing.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/EasingTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/EasingTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Editor.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/EditorAutoSizeOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/EditorAutoSizeOption.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Effect.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Element.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ElementCollection.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ElementEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ElementEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ElementTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ElementTemplate.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Element_StyleSheets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Element_StyleSheets.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/EmailKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/EmailKeyboard.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/EmbeddedFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/EmbeddedFont.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Entry.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/EventArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/EventArg.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ExperimentalFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ExperimentalFlags.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ExportFontAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ExportFontAttribute.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ExpressionSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ExpressionSearch.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FileImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FileImageSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Flex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Flex.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FlexEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FlexEnums.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FlexLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FlexLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FlowDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FlowDirection.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FlyoutBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FlyoutBehavior.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FlyoutHeaderBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FlyoutHeaderBehavior.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FlyoutLayoutBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FlyoutLayoutBehavior.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FlyoutPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FlyoutPage.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FocusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FocusEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Font.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FontAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FontAttributes.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FontElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FontElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FontFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FontFile.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FontImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FontImageSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FontRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FontRegistrar.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FontSizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FontSizeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FontTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FontTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/FormattedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/FormattedString.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Frame.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/GestureElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/GestureElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/GestureRecognizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/GestureRecognizer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/GestureState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/GestureState.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/GestureStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/GestureStatus.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/GradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/GradientBrush.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/GradientStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/GradientStop.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Grid.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/GridCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/GridCalc.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/GridLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/GridLength.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/GridUnitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/GridUnitType.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/HandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/HandlerAttribute.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/HtmlWebViewSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/HtmlWebViewSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IAnimatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IAnimatable.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IAppIndexingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IAppIndexingProvider.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IAppLinkEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IAppLinkEntry.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IAppLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IAppLinks.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IBarElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IBarElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IBorderElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IBorderElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IButtonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IButtonController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IButtonElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IButtonElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IColorElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IColorElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IConfigElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IConfigElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IConfigPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IConfigPlatform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IControlTemplated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IControlTemplated.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IConverterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IConverterOptions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ICornerElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ICornerElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IDefinition.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IDeserializer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IDispatcher.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IDispatcherProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IDispatcherProvider.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IEditorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IEditorController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IElementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IElementController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IEmbeddedFontLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IEmbeddedFontLoader.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IEntryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IEntryController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IExpressionSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IExpressionSearch.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IFontElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IFontElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IGestureController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IGestureController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IGestureRecognizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IGestureRecognizer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IGestureRecognizers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IGestureRecognizers.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IGridController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IGridController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IImageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IImageController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IImageElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IImageElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IIsolatedStorageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IIsolatedStorageFile.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IItemViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IItemViewController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IItemsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IItemsView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ILayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ILayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ILayoutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ILayoutController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ILineHeightElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ILineHeightElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IListProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IListProxy.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IListViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IListViewController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IMarkupExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IMarkupExtension.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IMenuItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IMenuItemController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IMultiPageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IMultiPageController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IMultiValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IMultiValueConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/INavigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/INavigation.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IPaddingElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IPaddingElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IPageContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IPageContainer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IPageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IPageController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IPlaceholderElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IPlaceholderElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IPlatformInvalidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IPlatformInvalidate.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IPlatformServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IPlatformServices.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IProvideParentValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IProvideParentValues.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IProvideValueTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IProvideValueTarget.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IRegisterable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IRegisterable.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IResourceDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IResourceDictionary.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IResourcesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IResourcesProvider.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IRootObjectProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IRootObjectProvider.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ISearchBarController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ISearchBarController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ISliderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ISliderController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ISpatialElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ISpatialElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IStreamImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IStreamImageSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IStyle.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IStyleElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IStyleElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ISwipeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ISwipeItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ISwipeViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ISwipeViewController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ITableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ITableModel.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ITableViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ITableViewController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ITemplatedItemsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ITemplatedItemsList.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ITemplatedItemsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ITemplatedItemsView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ITextElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ITextElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IValueConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IValueProvider.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IViewContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IViewContainer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IViewController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IVisualController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IVisualController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IWebViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IWebViewController.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IWebViewDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IWebViewDelegate.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IXamlTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IXamlTypeResolver.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IXmlLineInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IXmlLineInfoProvider.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Image.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ImageButton.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ImageElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ImageElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ImageSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ImageSourceConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IndicatorShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IndicatorShape.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IndicatorStackLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IndicatorStackLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/IndicatorView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/IndicatorView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/InputView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/InputView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Internals/AsyncValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Internals/AsyncValue.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Internals/INameScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Internals/INameScope.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Internals/IPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Internals/IPlatform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Internals/NameScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Internals/NameScope.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Internals/Ticker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Internals/Ticker.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ItemTappedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ItemTappedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Items/CarouselView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Items/CarouselView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Items/CollectionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Items/CollectionView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Items/IItemsLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Items/IItemsLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Items/ItemsLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Items/ItemsLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Items/ItemsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Items/ItemsView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Items/SelectionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Items/SelectionList.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Items/SelectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Items/SelectionMode.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Items/SnapPointsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Items/SnapPointsType.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ItemsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ItemsView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Keyboard.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/KeyboardFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/KeyboardFlags.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Label.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Layout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/LayoutAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/LayoutAlignment.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/LayoutConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/LayoutConstraint.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/LayoutExpandFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/LayoutExpandFlag.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/LayoutOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/LayoutOptions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/LineBreakMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/LineBreakMode.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/LineHeightElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/LineHeightElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/LinearGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/LinearGradientBrush.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ListProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ListProxy.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ListView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/LockingSemaphore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/LockingSemaphore.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Log.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/LogListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/LogListener.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/MeasureFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/MeasureFlags.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Menu.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/MenuItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/MergedStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/MergedStyle.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/MessagingCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/MessagingCenter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ModalEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ModalEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ModalPoppedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ModalPoppedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ModalPushedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ModalPushedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/MultiBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/MultiBinding.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/MultiPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/MultiPage.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NameScopeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NameScopeExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NamedPlatformColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NamedPlatformColor.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NamedSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NamedSize.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NativeBindingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NativeBindingHelpers.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NavigationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NavigationEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NavigationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NavigationModel.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NavigationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NavigationPage.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NavigationProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NavigationProxy.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NullEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NullEffect.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NumericExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NumericExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/NumericKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/NumericKeyboard.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/OSAppTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/OSAppTheme.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ObservableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ObservableList.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ObservableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ObservableWrapper.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/OnIdiom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/OnIdiom.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/OnPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/OnPlatform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/OpenGLView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/OpenGLView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/OrderedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/OrderedDictionary.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/PaddingElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/PaddingElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Page.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/PanGestureRecognizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/PanGestureRecognizer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/PanUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/PanUpdatedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ParameterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ParameterAttribute.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Performance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Performance.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Picker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Picker.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/PlaceholderElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/PlaceholderElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/PlatformEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/PlatformEffect.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Point.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/PointTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/PointTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Profiler.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ProgressBar.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/PromptArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/PromptArguments.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RadialGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RadialGradientBrush.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RadioButton.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RadioButtonGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RadioButtonGroup.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ReadOnlyCastingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ReadOnlyCastingList.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ReadOnlyListAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ReadOnlyListAdapter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Rect.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RectTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RectTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Rectangle.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ReflectionExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RefreshView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RefreshView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Region.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Registrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Registrar.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RelativeLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RelativeLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RenderWithAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RenderWithAttribute.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ResourceDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ResourceDictionary.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ResourcesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ResourcesExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ReturnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ReturnType.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RouteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RouteFactory.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Routing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Routing.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RoutingEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RoutingEffect.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/RowDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/RowDefinition.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ScrollBarVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ScrollBarVisibility.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ScrollMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ScrollMode.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ScrollOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ScrollOrientation.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ScrollToMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ScrollToMode.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ScrollToPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ScrollToPosition.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ScrollView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ScrollView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ScrolledEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ScrolledEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SearchBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SearchBar.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SearchBoxVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SearchBoxVisibility.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SeparatorMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SeparatorMenuItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SeparatorVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SeparatorVisibility.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Setter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Setter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SettersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SettersExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/ArcSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/ArcSegment.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/BezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/BezierSegment.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Ellipse.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/FillRule.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms.Shapes 2 | { 3 | public enum FillRule 4 | { 5 | EvenOdd, 6 | Nonzero 7 | } 8 | } -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Geometry.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms.Shapes 2 | { 3 | public abstract class Geometry : BindableObject 4 | { 5 | 6 | } 7 | } -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/GeometryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/GeometryGroup.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Line.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/LineGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/LineGeometry.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/LineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/LineSegment.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Matrix.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Path.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/PathFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/PathFigure.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/PathGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/PathGeometry.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/PathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/PathSegment.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/PenLineCap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/PenLineCap.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/PenLineJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/PenLineJoin.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Polygon.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Polyline.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Rectangle.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Shape.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/SkewTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/SkewTransform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Transform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shapes/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shapes/Vector2.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shell/BaseShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shell/BaseShellItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shell/MenuShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shell/MenuShellItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shell/SearchHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shell/SearchHandler.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shell/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shell/Shell.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shell/ShellContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shell/ShellContent.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shell/ShellGroupItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shell/ShellGroupItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shell/ShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shell/ShellItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Shell/ShellSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Shell/ShellSection.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Size.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SizeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SizeRequest.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SizeTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SizeTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Slider.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SolidColorBrush.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Span.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Span.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/StackLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/StackLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/StackOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/StackOrientation.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/StateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/StateTrigger.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/StateTriggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/StateTriggerBase.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Stepper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Stepper.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/StreamImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/StreamImageSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/StreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/StreamWrapper.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Stretch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Stretch.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Style.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/StyleSheets/Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/StyleSheets/Selector.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/StyleSheets/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/StyleSheets/Style.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SweepDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SweepDirection.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SwipeDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SwipeDirection.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SwipeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SwipeEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SwipeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SwipeItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SwipeItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SwipeItemView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SwipeItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SwipeItems.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SwipeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SwipeMode.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SwipeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SwipeView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SwipedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SwipedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Switch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Switch.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/SynchronizedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/SynchronizedList.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TabIndexExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TabIndexExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TabbedPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TabbedPage.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TableIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TableIntent.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TableModel.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TableRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TableRoot.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TableSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TableSection.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TableSectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TableSectionBase.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TableView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TapGestureRecognizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TapGestureRecognizer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TappedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TappedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TargetIdiom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TargetIdiom.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TargetPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TargetPlatform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TelephoneKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TelephoneKeyboard.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TemplateBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TemplateBinding.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TemplateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TemplateExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TemplateUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TemplateUtilities.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TemplatedItemsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TemplatedItemsList.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TemplatedPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TemplatedPage.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TemplatedView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TemplatedView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TextAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TextAlignment.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TextAlignmentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TextAlignmentElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TextChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TextChangedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TextElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TextElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TextKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TextKeyboard.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TextTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TextTransform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TextType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TextType.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Thickness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Thickness.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TimePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TimePicker.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ToggledEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ToggledEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ToolbarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ToolbarItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ToolbarItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ToolbarItemEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ToolbarItemOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ToolbarItemOrder.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TrackableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TrackableCollection.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Tweener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Tweener.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TypeTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TypeTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/TypedBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/TypedBinding.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/UriImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/UriImageSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/UriTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/UriTypeConverter.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/UrlKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/UrlKeyboard.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/UrlWebViewSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/UrlWebViewSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Vec2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Vec2.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/View.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ViewExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/ViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/ViewState.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/VisualElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/VisualElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/VisualStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/VisualStateManager.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Visuals/IVisual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Visuals/IVisual.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/Visuals/VisualMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/Visuals/VisualMarker.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/WeakEventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/WeakEventManager.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/WebNavigationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/WebNavigationEvent.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/WebNavigationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/WebNavigationResult.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/WebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/WebView.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/WebViewSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/WebViewSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/XamlParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/XamlParseException.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/XmlLineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/XmlLineInfo.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Core/XmlnsPrefixAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Core/XmlnsPrefixAttribute.cs -------------------------------------------------------------------------------- /Xamarin.Forms.DualScreen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.DualScreen.sln -------------------------------------------------------------------------------- /Xamarin.Forms.DualScreen/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.DualScreen/global.json -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.Android/FormsMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.Android/FormsMaps.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.Android/MapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.Android/MapRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.Android/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.Android/global.json -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.GTK/FormsMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.GTK/FormsMaps.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.GTK/GeocoderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.GTK/GeocoderBackend.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.GTK/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.GTK/Location.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.GTK/MapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.GTK/MapRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.GTK/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.GTK/app.config -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.Tizen/FormsMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.Tizen/FormsMaps.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.Tizen/MapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.Tizen/MapRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.UWP/FormsMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.UWP/FormsMaps.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.UWP/GeocoderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.UWP/GeocoderBackend.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.UWP/MapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.UWP/MapRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.UWP/PushPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.UWP/PushPin.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.UWP/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.UWP/global.json -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.WPF/FormsMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.WPF/FormsMaps.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.WPF/FormsPushPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.WPF/FormsPushPin.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.WPF/GeocoderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.WPF/GeocoderBackend.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.WPF/MapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.WPF/MapRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.iOS/FormsMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.iOS/FormsMaps.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.iOS/GeocoderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.iOS/GeocoderBackend.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.iOS/MapPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.iOS/MapPool.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps.iOS/MapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps.iOS/MapRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/Circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/Circle.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/Distance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/Distance.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/Geocoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/Geocoder.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/GeographyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/GeographyUtils.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/Map.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/MapClickedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/MapClickedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/MapElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/MapElement.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/MapSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/MapSpan.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/MapType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/MapType.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/Pin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/Pin.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/PinClickedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/PinClickedEventArgs.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/PinType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/PinType.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/Polygon.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/Polyline.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Maps/Position.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Maps/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms.Internals; 2 | 3 | [assembly: Preserve] -------------------------------------------------------------------------------- /Xamarin.Forms.Material.Android/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Material.Android/global.json -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Android/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Android/Flags.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Android/Forms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Android/Forms.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Android/ITabStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Android/ITabStop.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Android/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Android/Platform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Android/ViewPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Android/ViewPool.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Android/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Android/global.json -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/Forms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.GTK/Forms.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/FormsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.GTK/FormsWindow.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/GtkOpenGL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.GTK/GtkOpenGL.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/GtkThemes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.GTK/GtkThemes.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/GtkTicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.GTK/GtkTicker.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/Libs/gtk-sharp/README.txt: -------------------------------------------------------------------------------- 1 | https://github.com/mono/gtk-sharp -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/Libs/webkit-sharp/README.txt: -------------------------------------------------------------------------------- 1 | https://github.com/mono/webkit-sharp -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.GTK/Platform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/ViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.GTK/ViewRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.GTK/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.GTK/app.config -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.MacOS/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.MacOS/Platform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Tizen/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Tizen/Flags.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Tizen/Forms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Tizen/Forms.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Tizen/Log/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Tizen/Log/Log.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Tizen/Native/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Tizen/Native/Box.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.Tizen/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.Tizen/Platform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/AlertDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/AlertDialog.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/BrushHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/BrushHelpers.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/CellControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/CellControl.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/Dispatcher.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/Extensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/Flags.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms 2 | { 3 | internal static class Flags 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/Forms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/Forms.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/FormsButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/FormsButton.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/FormsPivot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/FormsPivot.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/FormsSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/FormsSlider.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/FormsTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/FormsTextBox.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/FormsUWP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/FormsUWP.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/PageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/PageControl.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/PageRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/PageRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/Platform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/Resources.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/ViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/ViewRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/WindowsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/WindowsPage.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/global.json -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.UAP/uno-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.UAP/uno-logo.png -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/Animatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/Animatable.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/CellControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/CellControl.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/Deserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/Deserializer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/Enums/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/Enums/Symbol.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/Forms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/Forms.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/FormsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/FormsPanel.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/FormsTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/FormsTextBox.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/Platform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/WPFTicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/WPFTicker.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.WPF/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.WPF/app.config -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/Deserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.iOS/Deserializer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/EventTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.iOS/EventTracker.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/Flags.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms 2 | { 3 | internal static class Flags 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/Forms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.iOS/Forms.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/ModalWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.iOS/ModalWrapper.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.iOS/Platform.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/RendererPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.iOS/RendererPool.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/ShadowEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.iOS/ShadowEffect.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/ViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.iOS/ViewRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Xamarin.Forms.Platform.iOS/iOSAppLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Platform.iOS/iOSAppLinks.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Platform/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Xamarin.Forms.Core")] -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/HRTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/HRTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/I8.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/I8.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/I8.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/I8.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/SetValue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/SetValue.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/XArray.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/XArray.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/XNull.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/XNull.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/XNull.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/XNull.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/XStatic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/XStatic.xaml -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/XamlgTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/XamlgTests.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/app.config -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/css/bar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml.UnitTests/css/foo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml.UnitTests/css/foo.css -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/CreateValuesVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/CreateValuesVisitor.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/ExpandMarkupsVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/ExpandMarkupsVisitor.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/HydrationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/HydrationContext.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/IExpressionParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/IExpressionParser.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/NamescopingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/NamescopingVisitor.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/ResourcesLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/ResourcesLoader.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/TypeArgumentsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/TypeArgumentsParser.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/ViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/ViewExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/XamlLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/XamlLoader.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/XamlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/XamlNode.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/XamlNodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/XamlNodeVisitor.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/XamlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/XamlParser.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/XamlServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/XamlServiceProvider.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/XmlName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/XmlName.cs -------------------------------------------------------------------------------- /Xamarin.Forms.Xaml/XmlnsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.Xaml/XmlnsHelper.cs -------------------------------------------------------------------------------- /Xamarin.Forms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.sln -------------------------------------------------------------------------------- /Xamarin.Forms.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/Xamarin.Forms.sln.DotSettings -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/debug.keystore -------------------------------------------------------------------------------- /gitversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/gitversion.yml -------------------------------------------------------------------------------- /xamarin.forms.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unoplatform/Uno.Xamarin.Forms.Platform/HEAD/xamarin.forms.snk --------------------------------------------------------------------------------