diff --git a/Uno.Gallery/Controls/SamplePageLayout.cs b/Uno.Gallery/Controls/SamplePageLayout.cs index a90340962..af9d77bb1 100644 --- a/Uno.Gallery/Controls/SamplePageLayout.cs +++ b/Uno.Gallery/Controls/SamplePageLayout.cs @@ -48,9 +48,10 @@ public partial class SamplePageLayout : ContentControl { new LayoutModeMapping(Design.Material, () => !IsDesignAgnostic, _materialRadioButton, _stickyMaterialRadioButton, VisualStateMaterial, MaterialTemplate), new LayoutModeMapping(Design.Fluent, () => !IsDesignAgnostic, _fluentRadioButton, _stickyFluentRadioButton, VisualStateFluent, FluentTemplate), - new LayoutModeMapping(Design.Cupertino, () => !IsDesignAgnostic, _cupertinoRadioButton, _stickyCupertinoRadioButton, VisualStateCupertino, CupertinoTemplate), + // Cupertino is disabled as it is not up to date. + // new LayoutModeMapping(Design.Cupertino, () => !IsDesignAgnostic, _cupertinoRadioButton, _stickyCupertinoRadioButton, VisualStateCupertino, CupertinoTemplate), new LayoutModeMapping(Design.Agnostic, () => IsDesignAgnostic, null, null, VisualStateAgnostic, DesignAgnosticTemplate), -#if __IOS__ || __MACOS__ || __ANDROID__ +#if __IOS__ || __MACOS__ || __ANDROID__ && !HAS_UNO_SKIA // native tab is only shown when applicable new LayoutModeMapping(Design.Native, () => !IsDesignAgnostic, _nativeRadioButton, _stickyNativeRadioButton, VisualStateNative, NativeTemplate), #else diff --git a/Uno.Gallery/Views/GeneralPages/CupertinoPalettePage.xaml.cs b/Uno.Gallery/Views/GeneralPages/CupertinoPalettePage.xaml.cs index 0bc33df0f..fe9652384 100644 --- a/Uno.Gallery/Views/GeneralPages/CupertinoPalettePage.xaml.cs +++ b/Uno.Gallery/Views/GeneralPages/CupertinoPalettePage.xaml.cs @@ -17,12 +17,13 @@ namespace Uno.Gallery.Views.GeneralPages { + // Cupertino theme is disabled as it is not actively supported. /// /// An empty page that can be used on its own or navigated to within a Frame. /// - [SamplePage(SampleCategory.Theming, "Cupertino Palette", - SortOrder = 3, - Description = "Uno.Cupertino comes with a built-in set of named Color and Brush resources. They are used in most control styles provided by Uno.Cupertino, meaning that you can easily style most controls just by changing a few colors.")] + // [SamplePage(SampleCategory.Theming, "Cupertino Palette", + // SortOrder = 3, + // Description = "Uno.Cupertino comes with a built-in set of named Color and Brush resources. They are used in most control styles provided by Uno.Cupertino, meaning that you can easily style most controls just by changing a few colors.")] public sealed partial class CupertinoPalettePage : Page { public CupertinoPalettePage()