Hi, before 1.0.0 beta,
when navigating to different template (html), it automatically added a back button on top left
However, i’m using 1.0.0 beta 3 i believe,
back button is not shown by default. and I’m not sure how i can display it.
I can manually add back button like below:
<ion-view>
<ion-nav-buttons side="left">
<button menu-toggle="left" class="button button-icon icon ion-back" ng-click="goBack()"></button>
</ion-nav-buttons>
...
however, I don’t want to add this manually to all other child pages. How can i make it like the previous version of ionic where it displays back button automatically? what’s the recommended way?