I'm using Ionic and want to create a back button in the footer. Here's how I'm doing it.
My view:
<div class="bar bar-footer bar-dark">
<button class="button button-outline button-light" ng-click="goBack()"><i class="ion-arrow-left-c"></i> Back</button>
</div>
and the controller for this view:
$scope.goBack = function () {
window.history.back();
};
My question: is there a better way of doing this (i.e. a directive), or is this how you are doing this also?
With custom click action, using $ionicNavBarDelegate:
From the ionic docs: http://ionicframework.com/docs/nightly/api/directive/ionNavBackButton/
You could also just use:
Use the
$ionicGoBack
function as the click handler