We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be95893 commit d06a7bdCopy full SHA for d06a7bd
platform/nativescript/runtime/components/frame.js
@@ -22,6 +22,16 @@ export default {
22
required: false,
23
default: null
24
},
25
+ clearHistory: {
26
+ type: Boolean,
27
+ required: false,
28
+ default: false
29
+ },
30
+ backstackVisible: {
31
32
33
+ default: true
34
35
// injected by the template compiler
36
hasRouterView: {
37
default: false
@@ -88,6 +98,8 @@ export default {
88
98
89
99
notifyPageMounted(pageVm) {
90
100
let options = {
101
+ backstackVisible: this.backstackVisible,
102
+ clearHistory: this.clearHistory,
91
103
create: () => pageVm.$el.nativeView
92
104
}
93
105
0 commit comments