Hello.
I just updated my project to beta19, adapting the changes in the tabs.
The problem is if I want to navigate within a tab to another page
If the route to the tab is tabs/tab1 how can I navigate to tabs/tab1/anotherpage
I have tried to add in tab1 module:
const routes: Routes = [
{
path: ‘’,
component: Tab1Page,
children:[
{
path:‘anotherpage’,
children:[
{
path:’’,
loadChildren: ‘…/anotherpage/anotherpage.module#anotherpageModule’
}
]
}]
}];
But when I go to tabs/tab1/anotherpage the navigator url change, but the page not