We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bb56ae commit 6a710aaCopy full SHA for 6a710aa
platform/nativescript/runtime/components/page.js
@@ -20,7 +20,8 @@ export default {
20
21
// we only need call this for the "defaultPage" of the frame
22
// which is equivalent to testing if any page is "current" in the frame
23
- if (frame && !frame.$el.nativeView.currentPage) {
+ if (frame && !frame.firstPageMounted && !frame.$el.nativeView.currentPage) {
24
+ frame.firstPageMounted = true
25
frame.notifyFirstPageMounted(this)
26
}
27
0 commit comments