No back button when navigatin from home to tabs page

Hey, I’m trying to navigate from home page to tab page (information tab page).
This is my routes:

$stateProvider
    .state('home', {
        url: '/home',
        controller: 'HomeController as homeCtrl',
        templateUrl: 'templates/home.html'
    })
    .state('tabs', {
        url: '/tabs',
        abstract: true,
        controller: 'TabsController as tabsCtrl',
        templateUrl: 'templates/tabs/index.html'
    })
        .state('tabs.information', {
            url: '/information',
            views: {
                'tabs-information': {
                    controller: 'TabsInformationController as tabsInfoCtrl',
                    templateUrl: 'templates/tabs/info.html'
                }
            }
        });

Preview video:
Video

Your home is not part of tabs, is it on purpose?
If not, you should nest it under tabs by renaming it as ‘tabs.home’

It caused me some troubles, because I have to give him a tab
I tried to make it without tab (just ion-nav-view) and it making some weird problems…
any idea?