Table of Contents

Interface IAppearingAware<TIntent>

Namespace
Nalu
Assembly
Nalu.Maui.Navigation.dll

INavigationService will invoke OnAppearingAsync(TIntent) method when the page is appearing and a TIntent navigation intent has been provided.

public interface IAppearingAware<in TIntent>

Type Parameters

TIntent

The type of supported navigation intent.

Methods

OnAppearingAsync(TIntent)

Invoked when the page is appearing with a TIntent navigation intent.

ValueTask OnAppearingAsync(TIntent intent)

Parameters

intent TIntent

The navigation intent.

Returns

ValueTask

A task which completes when appearing routines are completed.