Lines Matching refs:pageStack
289 pageStack: NavPathStack = new NavPathStack()
292 Navigation(this.pageStack) {
306 this.pageStack.pushPath({ name: "PageOne", param: "PageOne Param" })
307 this.pageStack.pushPathByName("PageOne", "PageOne Param")
313 this.pageStack.pushPathByName('PageOne', "PageOne Param", (popInfo) => {
321 this.pageStack.pushDestinationByName('PageOne', "PageOne Param")
335 this.pageStack.pop()
337 this.pageStack.popToName("PageOne")
339 this.pageStack.popToIndex(1)
341 this.pageStack.clear()
350 this.pageStack.replacePath({ name: "PageOne", param: "PageOne Param" })
351 this.pageStack.replacePathByName("PageOne", "PageOne Param")
360 this.pageStack.removeByName("PageOne")
362 this.pageStack.removeByIndexes([1,3,5])
371 this.pageStack.getAllPathName()
373 this.pageStack.getParamByIndex(1)
375 this.pageStack.getParamByName("PageOne")
377 this.pageStack.getIndexByName("PageOne")
397 this.pageStack.setInterception({
433 @Provide('NavPathStack') pageStack: NavPathStack = new NavPathStack()
443 Navigation(this.pageStack) {
448 this.pageStack.pushPathByName('DialogPage', '');
459 @Consume('NavPathStack') pageStack: NavPathStack;
469 this.pageStack.pop()
570 pageStack: NavPathStack = new NavPathStack()
573 this.pageStack.disableAnimation(true)
580 pageStack: NavPathStack = new NavPathStack()
582 this.pageStack.pushPath({ name: "PageOne" }, false)
583 this.pageStack.pop(false)
638 this.pageStack.pushPath({ name: 'ToPage' }, false)
734 pageStack : NavPathStack = new NavPathStack();
737 Navigation(this.pageStack){
739 this.pageStack.pushPathByName("PageOne", null, false);