I have a standard nav view with a detail template like this:
<body ng-app="myapp">
<ion-nav-view></ion-nav-view>
</body>
Detail View:
<ion-view view-title="Product Detail">
<ion-content ng-controller="ProductDetailCtrl">
<p>ID: {{product.id}}</p>
<p>Description: {{product.desc}}</p>
</ion-content>
</ion-view>
How can I now customize the header of the detail view (adding Text, Icons etc) without loosing the back button?
I tried it with
hide-nav-bar="true"
and then creating a new header but then the back button is goneā¦