How do I have multiple ionic views? - I've tried a variety of things to get it to work, but all failed...
Here are the relevant parts of my Angular Ionic app:
View
<body ng-app="ionic_appname">
<ion-nav-view></ion-nav-view>
<ion-nav-view name="errorsView" title="Errors"></ion-nav-view>
Routing
.config(
function ($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise('/');
$stateProvider
.state('errors', {
views: {
errorsView: {
templateUrl: 'main/templates/errors.html'
}
}
})
.state('home', {
url: '/',
templateUrl: 'main/templates/home.html',
})
}
main/templates/errors.html
<h3>Errors ahoy</h3>
main/templates/home.html
<h3>Tadaima</h3>
However the rendered output is just:
<body ng-app="ionic_appname" class="grade-a platform-browser platform-win32 platform-ready">
<ion-nav-view class="view-container" nav-view-transition="ios" nav-view-direction="none" nav-swipe="">
<ion-view view-title="Home" class="pane" nav-view="active" style="opacity: 1; transform: translate3d(0%, 0px, 0px);">
<h3>Tadaima</h3>
</ion-view>
</ion-nav-view>
<ion-nav-view name="errorsView" title="Errors" class="view-container" nav-view-transition="ios"></ion-nav-view>