File: Compatibility\Handlers\Shell\iOS\IShellPageRendererTracker.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System;
using ObjCRuntime;
using UIKit;
 
namespace Microsoft.Maui.Controls.Platform.Compatibility
{
	public interface IShellPageRendererTracker : IDisposable
	{
		bool IsRootPage { get; set; }
 
		UIViewController ViewController { get; set; }
 
		Page Page { get; set; }
	}
}