November 2019
Beginner
436 pages
8h 52m
English
At this point, we are displaying the raw JSON content of the messages. Let's replace this with the Material List. We also need a link so that we can get back to the list of chat groups. Let's get started:
<button mat-button [routerLink]="['/chat']">Back to Groups</button> <mat-list> <h3 mat-subheader>{{ group }}</h3> <mat-list-item *ngFor="let message of messages | async"> {{ message.text }} </mat-list-item> </mat-list>

Congratulations! You can now navigate between groups ...
Read now
Unlock full access