@kappys wrote:
hi, I need nested multiples views inside ion-tabs because I want create a modular app, for example this:
http://plnkr.co/edit/IAOpIZKNUCaUTvQxqJKy?p=preview
inside recentQuestionsAnswers.html I create a ion-nav-view :
<ion-view view-title="Recent questions and answers">
<ion-content>
<h1>Recent Questions</h1>
daho
<ion-nav-view name="prove"></ion-nav-view>
</ion-content>
</ion-view>and in the app.js:
........state('app.questionsAnswers.recent', { url: "/recent", views: { 'recent-questions': { templateUrl: "recentQuestionsAnswers.html", controller: 'recentQuestionsAnswersCtrl' }, 'prove': { templateUrl: "asd.html", controller: 'asdController' } }
})
.....
I need heelp!!
thanks
Posts: 2
Participants: 2