MCPcopy Index your code
hub / github.com/NativeScript/NativeScript / navigateWithHistory

Function navigateWithHistory

apps/automated/src/ui-helper.ts:162–166  ·  view source on GitHub ↗
(pageFactory: () => Page, navigationContext?: any)

Source from the content-addressed store, hash-verified

160}
161
162export function navigateWithHistory(pageFactory: () => Page, navigationContext?: any): Page {
163 let entry: NavigationEntry = { create: pageFactory, animated: false, context: navigationContext, clearHistory: false };
164
165 return navigateWithEntry(entry);
166}
167
168export function navigateToModule(moduleName: string, context?: any): Page {
169 let entry: NavigationEntry = { moduleName: moduleName, context: context, animated: false, clearHistory: true };

Callers

nothing calls this directly

Calls 1

navigateWithEntryFunction · 0.85

Tested by

no test coverage detected