File: Android\AppCompat\FrameRenderer.cs
Web Access
Project: src\src\Compatibility\Core\src\Compatibility.csproj (Microsoft.Maui.Controls.Compatibility)
using System;
using Android.Content;
 
namespace Microsoft.Maui.Controls.Compatibility.Platform.Android.AppCompat
{
	// This version of FrameRenderer is here for backward compatibility with anyone referencing 
	// FrameRenderer from this namespace
	[Obsolete("Use Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer instead")]
	public class FrameRenderer : FastRenderers.FrameRenderer
	{
		public FrameRenderer(Context context) : base(context)
		{
 
		}
	}
}