9.0 Released! → Native ESM runtimes 🚀, Vite support ⚡️, multi-window apps and more...
Read Announcement

Defined in: ui/frame/index.d.ts:362

Represents an entry in passed to navigate method.

Extends

Properties

animated?

ts
optional animated?: boolean;

Defined in: ui/frame/index.d.ts:376

True to navigate to the new Page using animated transitions, false otherwise.


backstackVisible?

ts
optional backstackVisible?: boolean;

Defined in: ui/frame/index.d.ts:397

True to record the navigation in the backstack, false otherwise. If the parameter is set to false then the Page will be displayed but once navigated from it will not be able to be navigated back to.


bindingContext?

ts
optional bindingContext?: any;

Defined in: ui/frame/index.d.ts:371

An object to become the binding context of the page navigating to. Optional.


clearHistory?

ts
optional clearHistory?: boolean;

Defined in: ui/frame/index.d.ts:402

True to clear the navigation history, false otherwise. Very useful when navigating away from login pages.


context?

ts
optional context?: any;

Defined in: ui/frame/index.d.ts:366

An object passed to the onNavigatedTo callback of the Page. Typically this is used to pass some data among pages. Optional.


create?

ts
optional create?: () => View;

Defined in: ui/frame/index.d.ts:357

A function used to create the View instance. Optional.

Returns

View

Inherited from

ViewEntry.create


moduleName?

ts
optional moduleName?: string;

Defined in: ui/frame/index.d.ts:352

The name of the module containing the View instance to load. Optional.

Inherited from

ViewEntry.moduleName


transition?

ts
optional transition?: NavigationTransition;

Defined in: ui/frame/index.d.ts:381

Specifies an optional navigation transition for all platforms. If not specified, the default platform transition will be used.


transitionAndroid?

ts
optional transitionAndroid?: NavigationTransition;

Defined in: ui/frame/index.d.ts:391

Specifies an optional navigation transition for Android. If not specified, the default platform transition will be used.


transitioniOS?

ts
optional transitioniOS?: NavigationTransition;

Defined in: ui/frame/index.d.ts:386

Specifies an optional navigation transition for iOS. If not specified, the default platform transition will be used.