Menu doesn't work in simulator/ios

Hi,

I used the sidemenu starter to get me started. In the browser everything works fine, but not on ios and the simulator. The sidemenu still opens, but when you click on a link, nothing happens. How is this possible?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>
    

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">
    <link href="lib/angular-material/angular-material.min.css" rel="stylesheet">
   

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>
    <script src="lib/angular-cookies/angular-cookies.js"></script>
    <script src="lib/angular-resource/angular-resource.js"></script>
    <script src="lib/lodash/lodash.js"></script>
    <script src="lib/angular-aria/angular-aria.js"></script>
    <script src="lib/angular-material/angular-material.js"></script>


    <!-- ngCordova -->
    <script src="lib/ngCordova/dist/ng-cordova.js"></script>

    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
    <script src="js/controllers.js"></script>
    <script src="js/directives.js"></script>
  </head>

  <body ng-app="starter">
    <ion-nav-view></ion-nav-view>
  </body>
</html>

Can no one help me? I really don’t know what to do. I tried removeing the ios platform and added it again, but nothing changes.

I have a login screen and when the login was successful, the view changes to the desired home view. When the menu is opened then to change to another view nothing happens. The menu stays open and it seems it didn’t execute the changeroute command. Only on ios and in the simulator though. In the browser it works fine

You have shared only part of your project… maybe sharing where the menu is and its controller: create a codepen.

Would you be able to provide a codepen @tino462000

I remove all angular-material dependencies and files and it works again. Not what I really had in mind for a solution.

I read that people have gotten it to work. Is there a startet project all in angular material which I could clone and work from there?