In myNavigator
at present there are three pages: bottom.html
, middle.html
, and top.html
. I want to get the bottom.html
above the top.html
and for that I am calling pushPage
.
But there are two issues here:
- The stack looks like this
bottom.html
,middle.html
,top.html
,bottom.html
. - The new
bottom.html
is fully reconstructed, so it is wasting lots of resources in rebuilding the same content.
I tried resetToPage
function but the issue is still same.