NativeScript 9.1 Released → V8 14.9, Vite 8 HMR, built for rapid agentic visual iteration
Dig in

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

Represents an entry in passed to navigate method.

Extends

Properties

animated?

ts
optional animated?: boolean;

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

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


backstackVisible?

ts
optional backstackVisible?: boolean;

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

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:381

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:412

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:376

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:367

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:362

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:391

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:401

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:396

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