Hi,
I am facing an issue with deep linking in ionic native. i.e Page redirect is happening, but the bottom tabs are not be visible and page tab click is not working. The code snippet what I am trying (with and without page scenario) has been given below. Anyone can respond to this query with a solution would be appreciated.
Deeplinks.routeWithNavController(this.nav, {
’/users_list’: ListPage,
’/select/:UserId/details’: UserPage
}).subscribe((match) => {
console.log(‘Successfully routed’, match);
}, (nomatch) => {
console.log(‘Unmatched Route’, nomatch);
});