Hello. In a specific context, I want to be able to navigate to another page $state.go('foo')
without any transitions. Can I customize this behaviour inside a controller? Thank you.
Hi. Look, maybe.
$ionicViewService.nextViewOptions({
disableAnimate: true
});
$state.go('foo');
Include $ionicViewService in you controller.
1 Like