In Ionic Framework, I use this HTML structure on all my views:
<ion-view view-title="Some title">
<ion-nav-buttons>
</ion-nav-buttons>
<ion-content>
Then I get a "< Back" button generated automatically. However, sometimes this button has the word "Back" and sometimes it has the name of the previous view.
Where and how can I change how the back button title behaves?
In Ionic Framework 2 you could now use the set the config property backButtonText to
''
You should use the
$ionicConfigProvider
:This example is from the official Ionic docs.
To control the behaviour of the "last view text on back button" you could set
backButton.previousTitleText(value)
to false.