I am trying to do something like this:
<md-tabs> <md-tab label="First Tab"> <md-toolbar></md-toolbar> <md-content> <md-list> <md-list-item ng-repeat="item in items"> <md-item-content> <div> {{item}} </div> </md-item-content> </md-list-item> </md-list> </md-content> </md-tab> <md-tab label="Second tab"> <md-list flex> <md-list-item ng-repeat="item in items"> <md-item-content>{{item}}</md-item-content> </md-list-item> </md-list> </md-tab> </md-tabs>
I want the tabs and toolbar to be fixed (always visible) and the contents of the list to scroll. I can not find a way to do this. There are other similar problems (for example, here ), but they seem old and supposedly fixed. I work with angular-material 0.10.0
Plunker here
source share