I have a project with a tabs component that is working fine until I want to implement navigation within a tab. For example, my TEAM tab has 2 subtabs/sections/pages TACTICS and INFORMATION, and if I'm on my tactics tab and I click this button:
<ion-button routerLink="/tabs/team/information">INFO</ion-button>
It navigates to that page with an animation. Is there any way to disable that animation? Or does it just happens because something in my code might be wrong?
Part of my tabs.router.module.ts:
const routes: Routes = [
{
path: 'tabs',
component: TabsPage,
children: [
{
path: 'team',
children: [
{
path: 'tactics',
children: [{
path: '',
loadChildren: () =>
import('../team-tactics/team-tactics.module').then(m => m.TeamTacticsPageModule)
},
]
},
{
path: 'information',
children: [{
path: '',
loadChildren: () =>
import('../team-information/team-information.module').then(m => m.TeamInformationPageModule)
}]