i want to go to a page from abstract tabs page to static page.after go to static page,cant do back from $ionicHistory and i try $state.go also.but it gives error
here is my app.js states
.state('dash', {
url: '/dash',
templateUrl: 'templates/home.html',
controller: 'DashCtrl'
})
.state('tabs', {
url: "/tab",
abstract: true,
templateUrl: "templates/what-is-i.html",
controller: 'ITabsCtrl'
})
.state('tabs.wht_is_i', {
url: "/wht_is_i",
views: {
'wht_is_i_tab': {
templateUrl: "templates/tab-wht_is_ihtml"
}
}
})
.state('tabs.how_to_t', {
url: "/how_to_t",
views: {
'how_to_t_tab': {
templateUrl: "templates/tab-how_to_t.html",
controller:"ITabsHowToTreatCtrl"
}
}
})
.state('fMap', {
url: '/f-map',
templateUrl: 'templates/f-map.html',
controller: 'FMapCtrl'
})
i have home screen.then it has to navigate to tabs with slide menu page.its state is “tab” then have to navigate from a one tab page to ‘fMap’ state.page transitions not working.and after came to “fMap” page,cannot back to previous tabs page.
how to manage it? how i organize the structure of states and views?
thank you