Brief black screen during navigation in v1.0.0-beta.13

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).

This will be fixed in beta 14, which we’re testing all this week

1 Like

Thank you for the quick reply.