How to redirect to home page and remove the back button on navigation bar

Use $ionicHistory to set the next view as the root:

$ionicHistory.nextViewOptions({
    historyRoot: true
});
$state.go('app.home');
3 Likes