Table of Contents

Interface IRelativeNavigationBuilder

Namespace
Nalu
Assembly
Nalu.Maui.Navigation.dll

A relative navigation.

public interface IRelativeNavigationBuilder : INavigationInfo, IReadOnlyList<INavigationSegment>, IReadOnlyCollection<INavigationSegment>, IEnumerable<INavigationSegment>, IEnumerable
Inherited Members
Extension Methods

Methods

Pop()

Pops the current page from the navigation stack.

IRelativeNavigationBuilder Pop()

Returns

IRelativeNavigationBuilder

Push<TPage>()

Pushes a new page onto the navigation stack.

IRelativeNavigationPushOnlyBuilder Push<TPage>() where TPage : class

Returns

IRelativeNavigationPushOnlyBuilder

Type Parameters

TPage

The page type to be pushed.

WithIntent(object?)

Sets the intent to be passed on the target page model.

INavigationInfo WithIntent(object? intent)

Parameters

intent object

The intent object.

Returns

INavigationInfo