File: iOS\Renderers\CheckBoxRenderer.cs | Web Access |
Project: src\src\Compatibility\Core\src\Compatibility.csproj (Microsoft.Maui.Controls.Compatibility) |
using System; using Foundation; namespace Microsoft.Maui.Controls.Compatibility.Platform.iOS { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] public class CheckBoxRenderer : CheckBoxRendererBase<FormsCheckBox> { [Preserve(Conditional = true)] public CheckBoxRenderer() { } protected override FormsCheckBox CreateNativeControl() { return new FormsCheckBox(); } } } |