File: Handlers\NavigationPage\NavigationViewHandler.Standard.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
using System;
 
namespace Microsoft.Maui.Handlers
{
	public partial class NavigationViewHandler : ViewHandler<IStackNavigationView, object>
	{
		protected override object CreatePlatformView()
		{
			throw new NotImplementedException();
		}
 
		public static void RequestNavigation(INavigationViewHandler arg1, IStackNavigation arg2, object? arg3)
		{
			throw new NotImplementedException();
		}
	}
}