Is there any way to hide “Welcome”, the history view title text, in ion-nav-back-button?
Thanks.
Is there any way to hide “Welcome”, the history view title text, in ion-nav-back-button?
Thanks.
You can hide that in your app’s config.
angular.module('app', ['ionic'])
.config(function ($ionicConfigProvider) {
$ionicConfigProvider.backButton.text(null);
$ionicConfigProvider.backButton.previousTitleText(false);
});
Thanks, that is working on my android, but the title is still existing on Chrome when debugging.