File: Primitives\NavigationRequestedEventArgs.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
using System.Collections.Generic;
 
namespace Microsoft.Maui
{
	public class NavigationRequest
	{
		public IReadOnlyList<IView> NavigationStack { get; }
 
		public NavigationRequest(IReadOnlyList<IView> newNavigationStack, bool animated)
		{
			NavigationStack = newNavigationStack;
			Animated = animated;
		}
 
		public bool Animated { get; }
	}
}