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
TIntentThe type of supported navigation intent.
Methods
OnAppearingAsync(TIntent)
Invoked when the page is appearing with a TIntent navigation intent.
ValueTask OnAppearingAsync(TIntent intent)
Parameters
intentTIntentThe navigation intent.
Returns
- ValueTask
A task which completes when appearing routines are completed.