I found an event handler that triggers when a change in the view happens:
$scope.$on("$ionicView.enter", function() {...});
This fires when a certain view is starting to show. I would like to have an event listener that triggers at the end of the view change navigation. Is there such an event?