Is it possible to have “Go back” button (B title should become the back button text) in the child of state B after direct transition from state A?
For example, I have these states:
.state("app", {
url: ''",
abstract: true
})
.state("app.home", {
url: "/home",
})
.state("app.cars", {
url: "/cars"
})
.state("app.cars.item", {
url: "/:id"
});
I want to make a transition from the state “app.home” to the “app.cars.item” and have “Go back” button to the “app.cars”. The problem is that Ionic won’t show “Go back” button to this state if there is no such view in $ionicHistory. Maybe it’s possible to do it manually?