I want to re-use your <ion-nav-back-button>
so that I can make use of your platform-specific defaults for the back button icon & text. For example:
<ion-nav-buttons side="primary">
<ion-nav-back-button ng-if="showStandardBack"></ion-nav-back-button>
<button ng-if="!showStandardBack">Cancel</button>
</ion-nav-buttons>
Is there a way to achieve this already? The above code throws an exception, something about ionNavBar
controller is required.