File: iOS\Shapes\EllipseRenderer.cs
Web Access
Project: src\src\Compatibility\Core\src\Compatibility.csproj (Microsoft.Maui.Controls.Compatibility)
using CoreGraphics;
using Microsoft.Maui.Controls.Platform;
using Microsoft.Maui.Controls.Shapes;
 
#if __MOBILE__
namespace Microsoft.Maui.Controls.Compatibility.Platform.iOS
#else
namespace Microsoft.Maui.Controls.Compatibility.Platform.MacOS
#endif
{
	[System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)]
	public class EllipseRenderer : ShapeRenderer<Ellipse, EllipseView>
	{
		[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
		public EllipseRenderer()
		{
 
		}
 
		protected override void OnElementChanged(ElementChangedEventArgs<Ellipse> args)
		{
			if (Control == null && args.NewElement != null)
			{
				SetNativeControl(new EllipseView());
			}
 
			base.OnElementChanged(args);
		}
	}
 
	public class EllipseView : ShapeView
	{
		public EllipseView()
		{
			UpdateShape();
		}
 
		void UpdateShape()
		{
			var path = new CGPath();
			path.AddEllipseInRect(new CGRect(0, 0, 1, 1));
			ShapeLayer.UpdateShape(path);
		}
	}
}