November 2019
Beginner
436 pages
8h 52m
English
In this section, we are going to use the material toolbar component as an application header bar. This bar allows our application to navigate to the Login screen and possibly other areas as well.
To get the material toolbar into the application, we need the corresponding module. Let's get started:
import { MatToolbarModule } from '@angular/material/toolbar'; @NgModule({ declarations: [AppComponent], imports: [ BrowserModule, BrowserAnimationsModule, AppRoutingModule, MatToolbarModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule {}
Read now
Unlock full access