@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