Hmmm. First off thanks for chiming in. Creating new views does in fact solve my problem. However, that is a bit messy/redundant and I am not a huge fan of the solution.
Doing something like this…
.state('tabs.factsHome', {
url: "/facts",
views: {
'home-tab': {
templateUrl: "templates/facts.html"
}
}
})
.state('tabs.factsProfile', {
url: "/facts",
views: {
'profile-tab': {
templateUrl: "templates/facts.html"
}
}
})
And the fact that you are saying this has issues with caching which I have not gotten to yet also makes me weary of this solution.