File: Handlers\Switch\SwitchHandler.Standard.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
using System;
 
namespace Microsoft.Maui.Handlers
{
	public partial class SwitchHandler : ViewHandler<ISwitch, object>
	{
		protected override object CreatePlatformView() => throw new NotImplementedException();
 
		public static void MapIsOn(ISwitchHandler handler, ISwitch view) { }
		public static void MapTrackColor(ISwitchHandler handler, ISwitch view) { }
		public static void MapThumbColor(ISwitchHandler handler, ISwitch view) { }
	}
}