Quantcast
Channel: Ionic Forum - Latest topics
Viewing all articles
Browse latest Browse all 70429

No back button when navigatin from home to tabs page

$
0
0

@matanyed wrote:

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

Posts: 3

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 70429

Trending Articles