July 2017
Intermediate to advanced
454 pages
10h 1m
English
The toolbar component of Angular Material Design is to be used as followed:
<md-toolbar> One good looking toolbar</md-toolbar>
This will produce the following:

In addition, you can use the Angular [color]="primary" | "accent" | "warn" attribute. Also, the toolbar can contain rows by using the <md-toolbar-row> markup:
<md-toolbar [color]="accent"> One good looking toolbar</md-toolbar><md-toolbar [color]="warn"> <span>First Row</span> <md-toolbar-row> <span>Second Row</span> </md-toolbar-row> <md-toolbar-row> <span>Third Row</span> </md-toolbar-row></md-toolbar><md-toolbar [color]="primary"> Another good looking ...
Read now
Unlock full access