Get started   Components   Icons   What's New
  Get a License
⚡️New Release! Material X components for Angular⚡ view demo
Type
Color
Dense
Folders
Photos
Jan 1, 2016
Recipes
Jan 17, 2016
Work
Jan 28, 2016
Notes
Vacation Itinerary
Feb 20, 2016
Kitchen Remodel
Jan 18, 2016
Change filter for code updates
HTML
TS
<mat-list>
    <h6 mat-subheader>Folders</h6>
    <mat-list-item *ngFor="let folder of folders">
        <set-icon mat-list-icon shape="folder"></set-icon>
        <h5 mat-line>{{folder.name}}</h5>
        <span mat-line> {{folder.updated | date}} </span>
    </mat-list-item>
    <mat-divider></mat-divider>
    <h6 mat-subheader>Notes</h6>
    <mat-list-item *ngFor="let note of notes">
        <set-icon mat-list-icon shape="folder"></set-icon>
        <h5 mat-line>{{note.name}}</h5>
        <span mat-line> {{note.updated | date}} </span>
    </mat-list-item>
</mat-list>