I am currently using the Ionic Framework along with its AngularJS UI-Router and $stateProvider to manage different views within my application.
However, I am facing challenges in specifying to the $stateProvider that I have multiple "Main Views", each of which has different Subviews.
For instance, when I navigate from /#/home
to /#/about
, the latter does not appear as a separate view but rather seems like a subpage of /#/home
.
While switching to AngularJS $routeProvider resolves this issue, it results in losing all transitions.
To better illustrate the problem, I have created a Pen for your reference:
http://codepen.io/anon/pen/gBDFi
The goal is to have no transition between the views, where every main URL functions as a new tab.