Psst, I was able to get it fixed by adding something to the config
in @App()
This is my app & config atm.
@App({
template: '<ion-nav swipe-back-enabled="true" [root]="rootPage"></ion-nav>',
config: {
tabbarPlacement: 'bottom',
platforms: {
android: {
pageTransitionDelay: 0 // No More Page Transition Delays
},
ios: {
pageTransitionDelay: 0,
tabSubPages: true // Allows for navigation through Tab Pages
}
}
}
})
Maybe this can help you.