In ionic i have a side menu.
When i click over a menu item i show a page in the content area. Now if i click an element in that page i want go in a detail page that have a tab:
How can i add a tab in this scenario?
Now i have the following route and i don’t know how handle a tabs in a detail page with a sidebar in my project app
.state('app', {
url: "/app",
abstract: true,
templateUrl: "templates/menu.html",
controller: 'AppCtrl'
})
.state('app.stream', {
cache: false,
url: '/stream',
views: {
'menuContent' :{
templateUrl: "templates/stream.html",
controller: 'StreamCtrl'
}
}
})