Hi guys, first of all thank You for the great work. I’ve got tabs template with following changes in router configuration (loading friends collection via resolve object):
.state('tab.friends', {
url: '/friends',
views: {
'tab-friends': {
templateUrl: 'templates/tab-friends.html',
controller: 'FriendsCtrl',
resolve: {
friends: function ($http) {
return $http.get('./data/friends/list.json');
}
}
}
},
})
I’ve got problem with brief black flash during transition to the ‘tab-friends’ view. I think the problem is caused by the ‘background-color: #000’ rule, which was added to ion-nav-view element probably in v1.0.0-beta.13 (v1.0.0-beta.11 is without this css rule and the transition is OK).