Interfaces
NavigationEntry
Represents an entry in passed to navigate method.
Defined in: ui/frame/index.d.ts:362
Represents an entry in passed to navigate method.
Extends
Properties
animated?
optional animated?: boolean;Defined in: ui/frame/index.d.ts:376
True to navigate to the new Page using animated transitions, false otherwise.
backstackVisible?
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?
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?
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?
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?
optional create?: () => View;Defined in: ui/frame/index.d.ts:357
A function used to create the View instance. Optional.
Returns
Inherited from
moduleName?
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
transition?
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?
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?
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.
- Previous
- NavigationData
- Next
- NavigationTransition