Try the following:
<body ng-cloak layout="column" ng-controller="AppController as app"> <md-toolbar layout="row" class="md-toolbar-tools"> <h1>Welcome!</h1> </md-toolbar> <div layout="column" flex> <md-tabs md-stretch-tabs="always" flex> <md-tab label="Tab1"> add our larger-than-life content here </md-tab> <md-tab label="Tab2"> </md-tab> </md-tabs> </div> </body>
Adding the flex attribute to md-tabs will make the contents of the internal tabs (md-tab) scrollable.
source share