Trying to develop a small application using ionic2
to enhance my understanding of it, however, facing some challenges with navigation.
I've grasped the distinction between a rootpage
(adjusted with nav.setRoot
) and a regular page (added through nav.push
). The issue is that for my app, I need the capability to access a side menu (which works fine on a rootpage
but not on a regular page) and the ability to navigate back (possible with a push page but not with a root page).
Thus, it seems like this type of page should be added as a push page rather than a root page. But how can I integrate a side menu on this type of page?
Appreciate any advice or guidance. Thank you.