Share via


NavigationProxy.PopModalAsync Method

Definition

Overloads

Name Description
PopModalAsync()

Pops the current modal page with animation.

PopModalAsync(Boolean)

Pops the current modal page.

PopModalAsync()

Source:
NavigationProxy.cs
Source:
NavigationProxy.cs
Source:
NavigationProxy.cs

Pops the current modal page with animation.

public:
 virtual System::Threading::Tasks::Task<Microsoft::Maui::Controls::Page ^> ^ PopModalAsync();
public System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page> PopModalAsync();
abstract member PopModalAsync : unit -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
override this.PopModalAsync : unit -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
Public Function PopModalAsync () As Task(Of Page)

Returns

The modal page that was popped.

Implements

Applies to

PopModalAsync(Boolean)

Source:
NavigationProxy.cs
Source:
NavigationProxy.cs
Source:
NavigationProxy.cs

Pops the current modal page.

public:
 virtual System::Threading::Tasks::Task<Microsoft::Maui::Controls::Page ^> ^ PopModalAsync(bool animated);
public System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page> PopModalAsync(bool animated);
abstract member PopModalAsync : bool -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
override this.PopModalAsync : bool -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
Public Function PopModalAsync (animated As Boolean) As Task(Of Page)

Parameters

animated
Boolean

Whether to animate the transition.

Returns

The modal page that was popped.

Implements

Applies to