November 2019
Beginner
436 pages
8h 52m
English
The simplest thing to start with is the Toolbar component. You can find details about the API, as well as examples of how to use it, here: https://material.angular.io/components/toolbar.
Let's learn how to easily integrate the Material Toolbar component:
import { MatToolbarModule } from '@angular/material/toolbar';
@NgModule({ declarations: [AppComponent], imports: [ BrowserModule, AppRoutingModule, BrowserAnimationsModule, MatToolbarModule ...Read now
Unlock full access