I'm developing an app with Ionic and Angular Material.
Now I'm struggling to get Ionics back button to work when it is used under the mdToolbar
directive of angular material.
You can see the problem here: http://plnkr.co/edit/lfVVa4KAUkOFLOL1nQET
In index.html <ion-nav-bar>
is located under the <mdToolbar>
(line 59) tag and the back button and the title does not show up when navigating.
If the <ion-nav-bar>
tag is listed anywhere else it works fine.
Any suggestions where the problem is and how to solve it?
While investigating this issue further it seems in ionic.bundle.js:48400 (function getAssoctiatedNavBarCtrl()
) navBarDelegate
is not initialized properly. But currently I have no idea why...