using System; using System.Collections.Generic; using Xamarin.Forms; using Xamarin.Forms.ControlGallery.WindowsUniversal; using Xamarin.Forms.Controls; [assembly: Dependency(typeof(PlatformSpecificCoreGalleryFactory))] namespace Xamarin.Forms.ControlGallery.WindowsUniversal { public class PlatformSpecificCoreGalleryFactory : IPlatformSpecificCoreGalleryFactory { public string Title => "Windows Core Gallery"; public IEnumerable<(Func Create, string Title)> GetPages() => null; } }