Hi there,
From tabs start project I juste added a “app” abstract state and the result is the content not showing on Android ( content is here, I can even click on the invisible tabs)
See code below
.state('app',{
abstract: true,
template: '<ui-view/>'
})
// setup an abstract state for the tabs directive
.state('app.tab', {
url: "/tab",
abstract: true,
templateUrl: "templates/tabs.html"
})
// Each tab has its own nav history stack:
.state('app.tab.dash', {
url: '/dash',
views: {
'tab-dash': {
templateUrl: 'templates/tab-dash.html',
controller: 'DashCtrl'
}
}
})
.state('app.tab.chats', {
url: '/chats',
views: {
'tab-chats': {
templateUrl: 'templates/tab-chats.html',
controller: 'ChatsCtrl'
}
}
})