Reputation: 1539
In my app, after login, when I'm getting into any page from tabs menu, I couldn't able to see back button despite using ion-nav-back-button. For this I've managed by using ion-button manually with this function ng-click="$ionicGoBack()". But the problem is, I can't get responsive arrow button in Android and iOS as a normal back-button works. Any possible ways for it?`
<ion-nav-buttons side="left">
<button ng-click="$ionicGoBack()" class="button back-button buttons button-clear">
<i class="icon ion-android-arrow-back"></i>
</button>
</ion-nav-buttons>
Upvotes: 0
Views: 483
Reputation: 1531
did you try this <ion-nav-back-button></ion-nav-back-button>
..? see the pen http://codepen.io/edisonpappi/pen/QvywLg
Upvotes: 0